-
Notifications
You must be signed in to change notification settings - Fork 115
Closed
Labels
Description
We are using pouchdb-authentication as authentication process for PouchDB.
Its working great with Firefox and Chrome but not in IE.
For example:
db.getSession(function (err, response) {
console.log(JSON.stringify(response));
});Response in Firefox/Chrome:
{"ok":true,"userCtx":{"name":"admin","roles":["admin"]},"info":{"authentication_db":"_users","authentication_handlers":["oauth","cookie","default"],"authenticated":"cookie"}}
Response in IE:
{"ok":true,"userCtx":{"name":null,"roles":[]},"info":{"authentication_db":"_users","authentication_handlers":["oauth","cookie","default"]}}
Is there any specific option for IE we are missing or it needs some configuration over CouchDB?