-
Notifications
You must be signed in to change notification settings - Fork 24.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android's CookieJar (JavaNetCookieJar) makes it impossible to use cookies during development #28456
Comments
Hi @rishabhpoddar we have a community module that allows you to manually manage your cookies here: https://github.com/react-native-community/cookies Would this solve your use case? |
Technically, I think react-native-community/cookies would help. However, it is really annoying to manage cookies manually, especially given that the OS is capable of taking care of this for you. So I do not consider using that as a solution to this issue. |
I think @rishabhpoddar is correct as this is a big issue, this should in itself be handled and work naturally for Android in react-native. |
Is this a criticism of how the existing module works? Because if so that could be potentially be fixed by the module or implemented by a different one. The reality is that React Native core is intentionally light and that apps are expected to pull in non-essential functionality through community modules. Most things are moving out of core, not in. So there'd need to be strong justification to solve this in core when there's already a solution (and options for other competing solutions if that doesn't meet your needs). Am I understanding correctly in that the ask here is to move that type of functionality into core? Apologies if I'm misreading this. |
@chrisglein the existing module to handle cookies on android has a bug where it appends a |
@rishabhpoddar theres an open PR for that bug. Comment on it, to provide more urgency for it. Discussion on this issue should be about if React Native core will have better cookie support. |
i did it,but useless,can u tell me what should i do, i need take cookies when fetch api |
This issue is waiting for author's feedback since 24 days. Please provide the requested feedback or this will be closed in 7 days. |
This issue was closed because the author hasn't provided the requested feedback after 7 days. |
Description
During development, quite often, the API server is running on a local IP like
192.168.1.2
. This means that any cookies (for authentication or otherwise) being sent to the react native app would also have a cookie domain like192.168.1.2
. While it's common to prefix cookie domains with a.
, these "development" friendly domains cannot have a prefix of.
in front of them (.192.168.1.2
doesn't make any sense - the cookies won't get sent).Android's
NetworkingModule
usesJavaNetCookieJar
to store cookies:JavaNetCookieJar
class, in thesaveFromResponse
function, always adds a.
to all cookie domains, making using cookies in development impossible.React Native version:
Steps To Reproduce
0.0.0.0:8080
/login
API that sets cookies for the domain192.168.1.2
(your local IP address) and an/info
API that uses the incoming cookies to return some logged in specific info./info
API and see that no cookies are sent.Expected Results
We expect standard cookie management behaviour. If we do not add the leading
.
in the cookie domain, everything works fine. This can be achieved by:JavaNetCookieJar
and building our ownCookieJar
.OkHttp
repo and waiting for them to fix it.Temporary fix:
Basically, we use Java reflection (not at all ideal, but seemed to have no other choice here) to reimplement the
saveFromResponse
function in our custom cookie jar that usesJavaNetCookieJar
.MainApplication.java
The text was updated successfully, but these errors were encountered: