You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
due to Apple's deprecation of UIWebView we need to switch to WKWebView. We could solve cookie issues using cordova-plugin-wkwebview-file-xhr for making AJAX requests. But we are not able to load HTML assets (image for instance via <img src="..." >) which are accessible with a valid session cookie only.
So now i was thinking to make API calls using cordova-plugin-fetch instead of using cordova-plugin-wkwebview-file-xhr and being able to receive cookies via
It would require quite a bit of refactoring to be able to test this scenario. That's why i want to ask beforehand if this plugin works with WKWebView flawlessly.
Thx.
The text was updated successfully, but these errors were encountered:
Hi there,
(question at the very end)
due to Apple's deprecation of UIWebView we need to switch to
WKWebView
. We could solve cookie issues usingcordova-plugin-wkwebview-file-xhr
for making AJAX requests. But we are not able to load HTML assets (image for instance via<img src="..." >
) which are accessible with a valid session cookie only.So now i was thinking to make API calls using
cordova-plugin-fetch
instead of usingcordova-plugin-wkwebview-file-xhr
and being able to receive cookies viaand inject this cookie into the
WKWebView
by using cordova-plugin-wkwebview-inject-cookie likeIt would require quite a bit of refactoring to be able to test this scenario. That's why i want to ask beforehand if this plugin works with
WKWebView
flawlessly.Thx.
The text was updated successfully, but these errors were encountered: