This repository has been archived by the owner on Feb 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 248
Make it easier to set withCredentials=true #945
Comments
And we've now deleted the deprecated http.request() method, making it even harder to set withCredentials. @markovuksanovic Could you add withCredentials back to Http? |
@jbdeboer Sounds good. |
mvuksano
added a commit
to mvuksano/angular.dart
that referenced
this issue
May 9, 2014
…, etc.) which use credentials (such as cookies or authorization headers). Closes dart-archive#945
mvuksano
added a commit
to mvuksano/angular.dart
that referenced
this issue
May 9, 2014
…, etc.) which use credentials (such as cookies or authorization headers). Closes dart-archive#945
mvuksano
added a commit
to mvuksano/angular.dart
that referenced
this issue
May 17, 2014
…, etc.) which use credentials (such as cookies or authorization headers). Closes dart-archive#945
mvuksano
added a commit
to mvuksano/angular.dart
that referenced
this issue
May 22, 2014
…, etc.) which use credentials (such as cookies or authorization headers). Closes dart-archive#945
Thanks ! |
dsalsbury
pushed a commit
to dsalsbury/angular.dart
that referenced
this issue
Jul 16, 2014
…, etc.) which use credentials (such as cookies or authorization headers). Closes dart-archive#945 Closes dart-archive#1026
dsalsbury
pushed a commit
to dsalsbury/angular.dart
that referenced
this issue
Jul 16, 2014
…, etc.) which use credentials (such as cookies or authorization headers). Closes dart-archive#945 Closes dart-archive#1026
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Using CORS + setting withCredentials=true in the http request is a quite common need, since it is mandatory for apps with authentication in development mode when your server is running on a port (8080 for example) and AngularDart application on another (3030 for debugging).
withCredentials parameter is available in the deprecated http.request() method, but not on http.post(), http.get() etc. It could be great to allow users to specify a withCredentials named parameter un http.post() and other shortcuts methods.
More details about that in https://groups.google.com/forum/#!topic/angular-dart/8FrOdBoYw-A
The text was updated successfully, but these errors were encountered: