-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Cookie handling #4227
Comments
Currently the application stores cookies in memory, during the execution of the application, but does not provide persistent cookie storage between application sessions. This means that when the app is closed and reopened new cookies are generated. The contents of the cookies are stored in the This class in turn is assigned to the After this, CookieJar is sent in the httpClient request, which is called every time the app is closed and opened. To check that the cookies are working correctly the following test has been done. From an OC10 account we opened and closed the app. We went to the website and changed the account password. We opened the app and as a result we received an "Authentication Fail" message with a 401 error. |
After checking the current status, these are the results:
So, we are in the point to get rid of the key icon. |
EPIC:
To do (basic auth):
With this steps, will avoid that cookies will support session even though credentials changed or not valid anymore.
This is the preliminary step to implement:
so, key icon could be removed from there because new credentials will be automatically asked if needed.
The text was updated successfully, but these errors were encountered: