Backback arrow icon

Angularのpostからheadersを取得する方法

this.http.post(`${ environment.oauthApi }/sign_in`, { email: email, password: password }, {
                headers: this.getAuthRequestOptions(),
                observe: 'response' // ここ
            }) 

劇ハマりしましたが、observe入れることで対応できました。

参考記事

なし