cookie icon indicating copy to clipboard operation
cookie copied to clipboard

Would it be better to use the Set-Cookie header?

Results 8 cookie issues
Sort by recently updated
recently updated
newest added

I think it is probably true that if you control both the client and the server, there is always a way to set things up so that the client code...

I found a use case - not for reading or writing cookies, but rather [detecting when they have changed](https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/cookies/onChanged). 1. I log in, and the server uses `Set-Cookie` response header...

OAuth 2.0 works by issuing a redirect to an identity provider (IdP) and getting back an access token (implicit flow) or an authorization code (authorization code flow) appended to the...

I've just discovered, that without using a custom GET-Request with `withCredentials` set to true, the Set-Cookie-Header is ignored. (No cookie is saved!) > The most interesting capability exposed by both...

I was considering using Elm to redo a contactform for putting in orders, mainly because based on user input calculations have to be made. This form also has a 'remember...

Hello ! I have a use case : I need to have a authentication like rails+devise but handled directly by Elm. How would you do that without cookies ?

This PR adds enough to be able to support the use case described in https://github.com/elm-lang/cookie/issues/3. In particular is supports reading cookies using a `get` function.

The README states: --- If you are looking for a way to store information, you should take a look into [local-storage](http://package.elm-lang.org/packages/elm-lang/local-storage/latest) or [session-storage](http://package.elm-lang.org/packages/elm-lang/session-storage/latest) instead. --- But when trying to access...