react-native-cookies
react-native-cookies copied to clipboard
Cookie manager for React Native
I am receiving this error everytime i run react-native run-android. Any ideas?
RNCookieManagerIOS.clearAll was called with 1 arguments but expects 0 arguments if you hacernt this method yourself this usually means that your versions of the native code and javascript code are...
swift,react-native0.48.3 when i use ``` yarn add react-native-cookies react-native link react-native-cookies ``` then i clean and run an error occur  google and do something but none is ok like...
Hi, Thanks for great work. I want to clear cookies set by a particular domain. Is it possible? I don't want to clear all cookies.
The second parameter is string in android and dictionary in iOS CookieManagerModule.java: ``` @ReactMethod public void setFromResponse(String url, String value, final Promise promise) throws URISyntaxException, IOException { ``` RNCookieManagerIOS.m ```...
I already ejected my React-Native project with the command below: ``` yarn run eject ``` After that I installed and linked this package with the following commands: ``` yarn add...
So I believe this has been already brought up in the another issue ( https://github.com/joeferraro/react-native-cookies/issues/16 ), but none of the solutions seems to have resolved the issue for me and...
According to the docs, it should return `true` on success and `false` on failure
Is there anything as simple as `fetch('...', { credentials:'omit' })` to make a single call without cookies? I couldn't figure it out.
Hi, i'm currently unable to remove `httpOnly` cookies. Packages version: - [`react-native-wkwebview`](https://github.com/CRAlpha/react-native-wkwebview): **1.20.0** - `react-native-cookies`: **3.2.0** If I `console.log` all cookies before and after invoking `clearAll` methods, all of them...