如何在Office JS任务窗格应用程序的Request标头中发送cookie? (带有角度4的Office-js加载项)

时间:2018-10-23 11:50:35

标签: angular office-js office-addins httpcookie angular4-httpclient

在请求标头中发送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”,但未能成功。

尽早提供帮助!
编码愉快!
谢谢。

0 个答案:

没有答案