Angular4 HttpClient不发送我的cookie

时间:2017-10-02 16:24:42

标签: angular httpclient

我使用HttpClient进行从“example.fr”到“api.example.fr”的CORS发布请求。

我从REST API服务器收到正确的值:

Access-Control-Allow-Credentials:true
Access-Control-Allow-Headers:content-type
Access-Control-Allow-Methods:POST, GET, DELETE, PUT, OPTIONS
Access-Control-Allow-Origin:http://example.fr
Access-Control-Max-Age:3600

但我需要将我的Cookie发送到api.example,但这不起作用。

我正在调用post方法:

return this.http.post(Config.ROUTES.auth.register, user, { withCredentials: true, })
      .catch(Utils.handleError);
是的,有人能帮帮我吗?非常感谢。

0 个答案:

没有答案