Getting All Cookies from Wkwebview

Getting all cookies from WKWebView

Finally, httpCookieStore for WKWebsiteDataStore landed in iOS 11.

https://developer.apple.com/documentation/webkit/wkwebsitedatastore?changes=latest_minor

WKWebView, get all cookies

I ended with simple "force-like" saving Cookie from webpage.

To get all cookie i use

stringByEvaluatingJavaScriptFromString

with JS string like document.cookie();. As result i able to receive all cookies as a string with ; separator. All i need to do - parse string, create cookie and set it to NSHttpSharedStorage



Related Topics



Leave a reply



Submit