在请求标头中发送cookie(角度为4的Office-js加载项)
headers.append('Content-Type', 'application/json');
headers.append('Accept', 'application/json');
headers.append('App-Url', this._apiConfigService.getApiCallBackUrl());
headers.append('Authorization-Code', authCode);
// created cookie.
this._localStorageCookie.createCookie("state", state, null);
return this.http.get(url, {
headers: headers,
body: '',
withCredentials: true
}).map(this.fetchResposne).catch((initialError) => {});
我已经从Office js对话框中以表单登录,然后想在成功登录后发送cookie。
当它到达Web-API时,我无法获得我设置的请求cookie。 我还尝试了请求选项“ withCredentials”,但未能成功。
尽早提供帮助!
编码愉快!
谢谢。