Github 个人身份验证令牌不适用于 Github API
Github Personal Authentication Token not working for Github API
我正在尝试使用我的个人身份验证令牌请求 https://api.github.com/search/issues?q=repo:react+state:open&sort=created&order=desc&per_page=100&page=1,但它总是 returns 422 状态。我在 headers 上使用令牌的方式是这样的:
{
headers: {
authorization: `token ${myToken}`
}
}`
我不知道我是否做错了什么,但我想这段代码应该可以正常工作。
以防万一,在阅读“How to send the authorization header using Axios”后,尝试:
axios.get('https://api.github.com/search/issues?q=react+state:open&sort=created&order=desc&per_page=100&page=1', {
headers: {
'Authorization': `token ${access_token}`
}
})
考虑到它的format has recently changed(2021 年 3 月)
,也尝试生成您的令牌
如下 by the OP Gabriel Mazurco,不再repo:
.
我正在尝试使用我的个人身份验证令牌请求 https://api.github.com/search/issues?q=repo:react+state:open&sort=created&order=desc&per_page=100&page=1,但它总是 returns 422 状态。我在 headers 上使用令牌的方式是这样的:
{
headers: {
authorization: `token ${myToken}`
}
}`
我不知道我是否做错了什么,但我想这段代码应该可以正常工作。
以防万一,在阅读“How to send the authorization header using Axios”后,尝试:
axios.get('https://api.github.com/search/issues?q=react+state:open&sort=created&order=desc&per_page=100&page=1', {
headers: {
'Authorization': `token ${access_token}`
}
})
考虑到它的format has recently changed(2021 年 3 月)
,也尝试生成您的令牌如下repo:
.