cookies icon indicating copy to clipboard operation
cookies copied to clipboard

🍪 Cookie Manager for React Native

Results 85 cookies issues
Sort by recently updated
recently updated
newest added

Hi, I unistalled package react-native-cookies and was installed ``` "@react-native-community/cookies": "^5.0.1", ``` And now I have error: RNCookieManagerAndroid.clearAll got 3 arguments, expected 2 My cod: ``` import CookieManager from '@react-native-community/cookies';...

RN: 0.63.2 Library version: 3.0.0 (also upgraded to 4.0.1, but it does not work either) I could fetch cookies successfully on Android, but they do not contain `expires` field, even...

### Summary I cannot seem to get the cookie manager to clear my expired cookies while the app is in the foreground/navigating between pages on iOS, at least during development....

When trying to use webkit flag true like CookieManager.getAll(true) the following reject is trown Error: WebKit/WebKit-Components are only available with iOS11 and higher! Is there any way to get the...

enhancement
help wanted
iOS

I'm using cookieManager to get cookies and store them, Then I want to set them back to my Url. Here is my code which is working perfect on iOS but...

# Question From what I've understand if multiple cookies are received, react-native will aggregate them into one as explain here: https://github.com/facebook/react-native/pull/27066 In my case I've two cookies aggregated, one by...

# Proposed fix for #72 useWebKit option on setFromResponse/getFromResponse * Should resolve issues with getFromResponse/setFromResponse not supporting WK cookie store. * Should not interfere with current calls to those methods...

Should WebKit cookies be moved to the `react-native-webview` module? The only time WebKit cookies are needed is usage with WebView. The two are coupled. How would y'all feel about moving...

proposal

# Bug report ## Summary When multiple cookies are set with the same name, but different domain and/or path, the map returned from `getAll()` will only include one of them,...

# Question Should we default `useWebKit` to `true` as the default for all static methods? (e.g. `CookieManager.clearAll(true)`) Given that react-native-webview from the community has now removed UIWebView entirely ([link](https://github.com/react-native-community/react-native-webview#versioning)), it...

documentation
iOS