作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
api 是 v3,我试图制作一个工具的原因是当你输入你的 github 用户名和密码以及 repo 名称和描述时,它会初始化 repo 并给你 url。我的输入是这个 -
curl -u {myuser}:{mypassword} -H "Content-Type: application/json" -d '{"name":"api-test","description":"made with github api","homepage": "https://github.com","private":true}' POST https://api.github.com/users/{myuser}/repos
{
"message": "Not Found",
"documentation_url": "https://developer.github.com/v3"
}
最佳答案
看到这个 curl tutorial用于您的 GitHub API 调用
POST
Use the
--request
(-X
) flag along with--data
(-d
) toPOST
data
curl --user "caspyin" --request POST --data '{"description":"Created via API","public":"true","files":{"file1.txt":{"content":"Demo"}}' https://api.github.com/gists
curl --user "caspyin" -X POST --data '{"description":"Created via API","public":"true","files":{"file1.txt":{"content":"Demo"}}' https://api.github.com/gists
Of course --data implies POST so you don't have to also specify the --request flag
curl --user "caspyin" --data '{"description":"Created via API","public":"true","files":{"file1.txt":{"content":"Demo"}}' https://api.github.com/gists
关于curl - Github API 错误 - { "message": "Not Found", "documentation_url": "https://developer.github.com/v3"} 在 cURL 终端中制作 repo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58315409/
api 是 v3,我试图制作一个工具的原因是当你输入你的 github 用户名和密码以及 repo 名称和描述时,它会初始化 repo 并给你 url。我的输入是这个 - curl -u {myuse
我是一名优秀的程序员,十分优秀!