Nick Redding

Results 20 comments of Nick Redding

Re: cookie emperor. I can't see any reason why this plugin would stop working with iOS 6.1.0. Most likely you are supplying the wrong url or path. Are you setting...

> Of course, more information: Our app wants to get cookies that are set by a pre-authentication service. So here comes crossdomain into play. Retrieving cookies with the cookie emperor...

> Hi, > > 1. We are using the WKWebView and have been using WKWebView before (through plugin cordova-plugin-ionic-webview) > 2. We are using the advanced-http-request plugin (https://github.com/silkimen/cordova-plugin-advanced-http), so no...

mrahn24 - your fix does not seem to properly return the error information to the reject function. That function always receives the object { code: "REQUEST", error: "", errorMessage: "error",...

mrahn24 I don't understand why you prefer call.reject("Error", "REQUEST", error, [:]) over call.reject(error.localizedDescription, "Http Request") since the latter provides more error information than just "error". Note that the error object...

See https://github.com/nickredding/bug6792 which has been extended to demonstrate this problem. It is odd that the expiry dates are set correctly even though HttpRequestHandler.swift is faulty. I placed a breakpoint in...

The fix is to modify setCookiesFromResponse in HttpRequestHandler and getServerUrl in CapacitorCookieManager as follows // fixed to not split the cookie at expires=, and process domain attribute properly // this...

You could apply the code fix I provided for immediate relief!

The fix is to modify setCookiesFromResponse in HttpRequestHandler and getServerUrl in CapacitorCookieManager as follows // fixed to not split the cookie at expires=, and process domain attribute properly // this...

The workaround for this is to set (or remove) a cookie against https://localhost when doing the same for the intended url. Unfortunately, forboth iOS and Android, this will not avoid...