I am unable to fetch/store cookies from WKWebView in ios 10. Could you please help me to resolve this?
Asked
Active
Viewed 114 times
1 Answers
0
you can try theses suggestions given in answer. It works for me, i hope it will helpful for you :)
Getting all cookies from WKWebView
also you can try thin in your case [updated]
WKWebsiteDataStore.default().fetchDataRecords(ofTypes: WKWebsiteDataStore.allWebsiteDataTypes()) { records in records.forEach { record in print(record) }

Shivam Parmar
- 1,520
- 11
- 27
-
-
-
-
-
-
WKWebsiteDataStore.default().fetchDataRecords(ofTypes: WKWebsiteDataStore.allWebsiteDataTypes()) { records in records.forEach { record in print(record) } – Shivam Parmar Dec 21 '20 at 06:21
-
Let us [continue this discussion in chat](https://chat.stackoverflow.com/rooms/226224/discussion-between-bathi-and-shivam-parmar). – bAthi Dec 21 '20 at 06:24