github API check_runs 返回 415,“不支持的媒体类型”
Posted
技术标签:
【中文标题】github API check_runs 返回 415,“不支持的媒体类型”【英文标题】:github API check_runs returning 415, "Unsupported Media Type" 【发布时间】:2021-04-27 09:14:36 【问题描述】:真的很简单,用 github api 发出请求:https://docs.github.com/en/rest/reference/checks#list-check-runs-for-a-git-reference
我正在尝试查找我拥有的特定分支的检查运行。以下是我获取的网址:
url = ...api/v3/repos/repo_fullname/commits/branch/check-runs'
这是我的标题:
headers =
'Authorization': 'token ' + token,
"Accept": "application/vnd.github.v3+json"
我遇到了:415 Client Error: Unsupported Media Type for url...
请帮忙,我已经敲了几个小时的头了。谢谢!
【问题讨论】:
【参考方案1】:也许你可以尝试不同的接受?我使用 octokit for node,这解决了我的问题,也许在这种情况下会有所帮助。
headers =
'Authorization': 'token ' + token,
"Accept": "application/vnd.github.antiope-preview+json"
【讨论】:
以上是关于github API check_runs 返回 415,“不支持的媒体类型”的主要内容,如果未能解决你的问题,请参考以下文章
通过 Github Graphql v4 API 列出所有用户