In my app, I want to do login using WKWebView and then all further request to server is done.
I'm able to perform successful login using WKWebView. On it's success I get session information. I had implemented it previously using UIWebView and it was working properly. All my further web service call were working fine in UIWebView.
Now when I implemented login with WKWebView it is successfully login but when i hit different link (URL) it gives me logout response every time and I'm trying to call service using Cookies and , it's not giving me proper response as session information are not being passed.
Is there any way, I can store those session information of WKWebView
Any help will be appreciated. Please help!