kirtipriya
kirtipriya

Reputation: 158

cookies not being set for ionic 3 app in ios 13

Ionic 3 app works perfect in ios 10,11 and 12. But after the upgrade to new version ios 13, the cookies are not being set in the wkwebview. All the cross origin requests are hence failing. CORS is enabled If i degrade the webview to UIWebview, the crossorigin requests work fine. But I can see some scrolling issues in the app.

Upvotes: 0

Views: 778

Answers (1)

dgbt
dgbt

Reputation: 251

Degrading to uiwebview is quite a problem cause apple has deprecated its use.

Same issue here cookies are not set correctly. Requests seem to work.

EDIT1: The main Problem is iOS13 Webkit view is killing the UseCredentials setting with setting no cookies. Best Practice use a cordova plugin from Oracle or work with api_keys.

Next Problem Apple is also Killing request Parameters from images..

Upvotes: 1

Related Questions