使用“Bearer”进行简单的 API 调用使用 Ajax 进行 token 授权
我的问题是我无法使用AJAX从API获取数据。
我正在使用JWT令牌进行身份验证,当我从Postman调用API时,我会成功获取数据。
但是,当使用AJAX调用API时,检测到ERR_ABORT的401(未授权)错误。 这是代码:
$.ajax({
type: "GET",
url: API_URL,
dataType: 'jsonp',
contentType: "application/json",
headers: {
"Cache-Control": "no-cache",
"Authorization": "Bearer " + access_token,
},
data: {},
success: function(resp){
console.log(resp)
},
error: function(error){
}
})
另外,当我复制和使用Postman生成的代码片段时,我会遇到相同的错误。
我已经为此搜索了很多答案并应用了它们,但对我不起作用。
有人可以帮忙吗?
先感谢您。
My problem is that I couldn't fetch data from API using Ajax.
I'm using a JWT token for authentication and when I call the API from Postman, I get the data successfully.
However, when calling the API using ajax, an ERR_ABORTED 401 (Unauthorized) error is detected.
Here's the code:
$.ajax({
type: "GET",
url: API_URL,
dataType: 'jsonp',
contentType: "application/json",
headers: {
"Cache-Control": "no-cache",
"Authorization": "Bearer " + access_token,
},
data: {},
success: function(resp){
console.log(resp)
},
error: function(error){
}
})
Also, I get the same error when I copy and use the code snippet generated by POSTMAN.
I've searched a lot of answers for this and applied them, but it doesn't work for me.
Can someone help with this?
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在第5行上有错误...应该是
datatype:'json'
。解决方案:
You have an error on line 5... it should be
dataType: 'json'
.The solution: