Dima Vasylenko
Dima Vasylenko

Reputation: 1

Angular2 - cookie in request headers

How to make Angular2 memorize all cookies from Response Headers and send it in Request Headers when i access to server!

Upvotes: 0

Views: 701

Answers (1)

Viktor Leonets
Viktor Leonets

Reputation: 473

You should configure your request let options = new RequestOptions({ headers: headers, withCredentials: true });

Upvotes: 2

Related Questions