How can I add headers to the OPTIONS
request made towards a cross-domain API?
The API I'm working against requires a JWT token set as Authorization
header on all requests.
When I try to access to the API Angular first performs an OPTIONS
request that doesn't care about my headers that I setup for the "real" request like this:
this._headers = new Headers({
'Content-Type': 'application/x-www-form-urlencoded',
'Authorization': 'Bearer my-token-here'
});
return this._http
.post(AppConfig.apiUrl + 'auth/logout', params, {headers: this._headers})
...
...
When no token is provided, the API returns HTTP status 401 and Angular thinks the OPTIONS
request fails.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…