On Monday, February 24, 2014 9:03:36 PM UTC+1, Vinod Jayendra wrote:
>
> I want to set the Accept header in my GET / POST requests for the
> hyperlinks generated through AngularJS, it seem to be not working. Please
> let me know of any pointers
>
When setting headers through $httpProvider.defaults.headers.common, you're
setting them for *all* types of requests - not only GETs and POSTs.
What you want to do is:
$httpProvider.defaults.headers.get = { 'Accept' : '....' }
to set the headers for GET requests. Notice 'get' is lower-case which is
entirely by the book [1].
[1]: http://docs.angularjs.org/api/ng/service/$http
--
You received this message because you are subscribed to the Google Groups
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/groups/opt_out.