You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current implementation of cookie based auth #241 solves the most important issue (being able to view private images), but it still needs some improvements:
Use cookie authentication for file uploads, so we can get rid of signing individual HTTP requests. Note that this currently works on same-origin situations, but not cross.
The text was updated successfully, but these errors were encountered:
Cross origin cookies can't be set from JavaScript by design (major security risico), from what I can see only subdomains are a possibility. Proxying images through your own server seems like an easy solution.
By far the simplest way to invalidate authentication is to set a minimum timestamp and reject everything earlier. Though just adding an expiration is more robust.
Current implementation of cookie based auth #241 solves the most important issue (being able to view private images), but it still needs some improvements:
The text was updated successfully, but these errors were encountered: