-
Notifications
You must be signed in to change notification settings - Fork 2
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
Is there a way to add cookies to the request? #3
Comments
Cookies are just HTTP headers, so you will need to add your correctly formatted cookies to the There is currently no higher level API, nor is there a cookie jar that will store cookies per domain and send them automatically on subsequent requests. |
thanks. I will try this out. I know very little about HTTP, but I noticed that, e.g. HTTP.jl, has different keywords for headers and cookies, thus I am not quite sure whether cookies are just headers. |
Yes, it's just a header (header name is For the cookie value, you will have multiple cookies as a
|
Thanks. This works like a charm. |
might be better to discuss this here instead of JuliaWeb/LibCURL.jl#103
The text was updated successfully, but these errors were encountered: