react-native-cookies
react-native-cookies copied to clipboard
After RN migration from .55.4 to .57.5 I'm not able to return all the cookies
I have the same issue after migrate from .55.4 to .56 and .57.5 react-native-cookies third part library does not return all my cookies, I guess it has something to do with WKWebView implementation, even when I created a module to work with objective C and part of react-native-cookies code to get all the cookies and I had different result for .55.4 and .57.5
This is how it looks using objective C and the debugger, I got 26 keys in comparison of just 7 keys.
Any update?
Is this library still working ? I doubt
I found a combination where is working, "react-native-cookies": "^3.3.0", "react": "^16.5.2", "react-native": "^0.57.2", and we had to add credentials: "include" in every fetch call Example fetch(url, { method: "GET", credentials: "include" })
I have forked the repo here: https://github.com/safaiyeh/react-native-cookie-store We can create issues and PRs there to continue the development of the project.