We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Cookies are not being sent in requests to remotedev-server, which makes it difficult utilize cookie based authorization with this library.
This is happening because the fetch library doesn't send cookies by default. Callers have to set {credentials: 'same-origin'}: https://fetch.spec.whatwg.org/#concept-request-credentials-mode
The text was updated successfully, but these errors were encountered:
0aeae65
Implemented in redux-remotedev@0.3.0. Probably we could make it configurable (to use omit or include) in case some one need this.
redux-remotedev@0.3.0
omit
include
Thanks for the suggestions!
Sorry, something went wrong.
No branches or pull requests
Cookies are not being sent in requests to remotedev-server, which makes it difficult utilize cookie based authorization with this library.
This is happening because the fetch library doesn't send cookies by default. Callers have to set {credentials: 'same-origin'}: https://fetch.spec.whatwg.org/#concept-request-credentials-mode
The text was updated successfully, but these errors were encountered: