gpt4 book ai didi

github - Gist 中的个人访问 token

转载 作者:行者123 更新时间:2023-12-03 23:17:34 33 4
gpt4 key购买 nike

我创建了一个个人访问 token ( https://github.com/settings/tokens ) 给 Gist烫发。

我试图用它来创建一个要点,但我得到了

{
"message": "Not Found",
"documentation_url": "https://developer.github.com/v3"
}

我的要求是:
POST /gist HTTP/1.1
Host: api.github.com
Connection: close
X-Client-Data: CJO2yQEIorbJAQjBtskBCPqcygEIqZ3KAQjSncoBCKijygE=
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36
Accept-Language: en-US,en;q=0.8,es;q=0.6
Authorization: Basic blablablablablabla
Content-Length: 142

{
"description": "the description for this gist",
"files": {
"file1.txt": {
"content": "String file contents"
}
}
}

不能使用个人 token 在要点中发布吗?

最佳答案

问题是不应该使用基本身份验证,而是使用特定的 header 来提供 token 。请求应该是:

POST /gist HTTP/1.1
Host: api.github.com
Connection: close
X-Client-Data: CJO2yQEIorbJAQjBtskBCPqcygEIqZ3KAQjSncoBCKijygE=
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36
Accept-Language: en-US,en;q=0.8,es;q=0.6
Authorization: token aabbaabbaabbabababababababababababababab
Content-Length: 142

{
"description": "the description for this gist",
"files": {
"file1.txt": {
"content": "String file contents"
}
}
}

关于github - Gist 中的个人访问 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47266034/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com