物联网项目,先写好了 API,使用 JWT AUTH,token 写入 cookie,提示 Refused to set unsafe header "cookie"。
服务器已经设置了
header / Access-Control-Allow-Origin *
header / Access-Control-Allow-Credentials true
代码如下:
$.ajax({
url: "https://api.xxx.xxx/temperature/",
type: "GET",
beforeSend: function(xhr){
xhr.setRequestHeader('cookie', token)
},
success: function(data){
alert(data);
}
})
求解惑
1
kfll 2017-07-17 22:52:01 +08:00 1
|
2
29EtwXn6t5wgM3fD OP @kfll 那应该如何使用 JWT token 呢
|
3
29EtwXn6t5wgM3fD OP @kfll 多谢已经找到了应该放在 Authorization Header 里
|