cordova-plugin-wkwebview-sync-cookies

Cordova plugin to sync cookies in a WKWebView


Keywords
cookies, cordova, ecosystem:cordova, first, get, init, install, plugin, sync, wkwebview
License
Unlicense
Install
npm install cordova-plugin-wkwebview-sync-cookies@1.0.2

Documentation

cordova-plugin-wkwebview-sync-cookies

This works around an issue in WKWebView where cookies are not readable or settable in AJAX requests on the first app install. Executing the plugin at the specified URL will allow the server to set cookies on the client.

Usage

document.addEventListener('deviceready', () => {
  const args = ['GET', 'https://my.site.com'];
  cordova.exec(null, null, 'WKWebViewSyncCookies', 'sync', args);
});