Replies: 1 comment 1 reply
-
@DJN1, did you find a workaround/solution for this? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I was initially planning on using the
.cookie_store(true)
method on theClientBuilder
to manage my cookies. However, since this is not yet merged(#1449), I am wanting to manually manage it.I'm using dioxus for the UI, which provides a context-api(similar to react), that I want to use(not yet implemented in my app). However, I noticed that when I make the auth request and call
response.headers()
and log that, the headers does not include theset-cookie
header that is returned and visible when inspecting the request's response in the network tab of Firefox.Relevant code:
Response in Firefox network:
Output from console.log:
For reference, here is my
Cargo.toml
.If I am missing a feature, please let me know. I have also tried adding the features that are automatically added when adding
cookies
(cookie_store
,cookie_crate
) but had no luck with that.I took a look at the underlying implementation and checked for limitations in the
http
library but did not see anything that could cause issues, and I would assume that if something would cause issues, I would get errors anyway.Apologies if this is the wrong place to ask this.
Beta Was this translation helpful? Give feedback.
All reactions