我想使用企业 GitHub API 为 org repo 创建一个问题,但无法使用curl
我在用
curl -u $username -d '{"title":"Big Files List", "label":"big files","body": "'$(find -type f -size +150M)'"}' https://$hostname/api/v3/repos/orgs/$orgName/$repoName/issues -k
我收到的回复中的信息是"Not Found"
我检查过https://developer.github.com/v3/issues/#create-an-issue
,它只谈论用户的回购而不是组织回购。