Cordova webkit browser cookie manipulation, XWalk solution
npm install wm-cordova-plugin-cookieemperorCookie Emperor
==============
Since cordova apps should not live without the Crosswalk Project anymore and the InAppBrowser-plugin does not use the XWalk webview sharing cookies is not that easy. Setting up cookies via
document.cookie does not provide the expected result and thus the CookieMaster was born. Since CookieMaster is no longer maintained and cannot be build with android sdk < 23 (without gradle hacks)
I came to the conclusion to fork this project and keep it maintained to a certain level.
Feel free to contribute, pull-requests will be reviewed.
Install with Cordova CLI
$ cordova plugin add wm-cordova-plugin-cookieemperor
javascript
window.cookieEmperor.getCookie('http://:', '', function(data) {
console.log(data.cookieValue);
}, function(error) {
if (error) {
console.log('error: ' + error);
}
});
`
$3
`javascript
window.cookieEmperor.setCookie('http://:', '', '',
function() {
console.log('A cookie has been set');
},
function(error) {
console.log('Error setting cookie: '+error);
});
`
The cookie value should be formatted just like a regular document.cookie value.$3
`javascript
window.cookieEmperor.clearAll(
function() {
console.log('Cookies have been cleared');
},
function() {
console.log('Cookies could not be cleared');
});
``