gpt4 book ai didi

python - 使用 PyGithub 时 GitHub "Requires Authentication"错误

转载 作者:行者123 更新时间:2023-12-05 03:41:49 33 4
gpt4 key购买 nike

我试图找出如何使用 PyGithub 模块,但我不断收到相同的错误:

github.GithubException.GithubException: 401 {"message": "Requires authentication", "documentation_url": "https://docs.github.com/rest/reference/users#get-the-authenticated-user"}

考虑到我刚开始,我的代码非常简单:

from github import Github
g = Github("Charonum","xxxxxxxx")
user = g.get_user()
print(user.name)
print(user.login)

错误是在它到达print(user.name) 时。

最佳答案

查看their documentation ,看起来您没有正确初始化 Github 类。我会通读它以找到有关如何正确设置的更多信息。错误很明显,您没有正确输入身份验证凭据。

文档中的示例:

from github import Github

# using an access token
g = Github("access_token")

# Github Enterprise with custom hostname
g = Github(base_url="https://{hostname}/api/v3", login_or_token="access_token")

关于python - 使用 PyGithub 时 GitHub "Requires Authentication"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67595211/

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