James Newton Taylor
James Newton Taylor
@kartercs see [my comment on related issue](https://github.com/dart-lang/http/issues/20#issuecomment-706208889) You don't need to store the cookie, just set it in the browser, but it will not work without `withCredentials = true` #20
I have put in pull request #485 to change the default setting in the browser client
This might lead to less people posting issues about CORS errors 😄
I don't see how this is going to help, because the only reference to the constructor call is this global function: `BaseClient createClient() => BrowserClient();` ([lib/src/browser_client.dart - line 20](https://github.com/dart-lang/http/blob/a8efbef05a58919dc7aa2dab42198334f2459ffb/lib/src/browser_client.dart#L20)) So...
@greg-fischer I am also trying to implement security the "right" way using httpOnly cookies stored in the browser. When my HTTP response has 'set-cookie' in the header, the cookie is...
I have put in pull request #485 to change the default setting in the browser client