Include Cookies in requests
See original GitHub issueHi Johan,
thanks for the great software
I am running yopass behind SSO. Authentication is done via a cookie.
Unfortunately currently yopass is not sending the cookies with the request.
The field that will most likely solve this is: https://developer.mozilla.org/en-US/docs/Web/API/Request/Request credentials: include
I do not see any case where transmitting the cookie with the request would have negative consequences, so this might be good to make the default behaviour.
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
How to use cookies in Python Requests - Stack Overflow
You can use a session object. It stores the cookies so you can make requests, and it handles the cookies for you s...
Read more >Using HTTP cookies - MDN Web Docs
After receiving an HTTP request, a server can send one or more Set-Cookie headers with the response. The browser usually stores the cookie...
Read more >requests.cookies — Requests 2.28.1 documentation
Source code for requests.cookies. """ requests.cookies ... cookie jar. Use .get and .set and include domain and path args in order to be...
Read more >Using cookies - Postman Learning Center
Using the cookie manager ... To manage cookies in Postman, open a request, then select Cookies (under Send). ... The Manage Cookies window...
Read more >response.cookies - Python requests - GeeksforGeeks
Python requests are generally used to fetch the content from a particular resource URI. Whenever we make a request to a specified URI...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @nielsole, I assume you fixed this yourself earlier but I just wanted to let you know that I added credentials include to the website with https://github.com/yopass/website/pull/1
that sounds good.