abhinavms commented on issue #1228: URL: https://github.com/apache/cordova-ios/issues/1228#issuecomment-1376115166
@mkayander For me by default, the Cookie policy is set to `NSHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain` which is preventing the cookies to be set even when cross-site tracking is enabled. Changing it to `NSHTTPCookieAcceptPolicyAlways` fixed the issue. In CDVWebViewEngine.m, can you try adding the below line and see if that helps `NSHTTPCookieStorage.sharedHTTPCookieStorage.cookieAcceptPolicy = NSHTTPCookieAcceptPolicyAlways;` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
