我需要有关 Github API 的帮助,
我需要通过 api 提交新版本的文件,我试图通过发送 post 请求来实现这一点
https://api.github.com/repos/:username/:repo:/git/commits/
有数据
{
"login": "username",
"token": "auth_token",
"parent_commit": "sha",
"message": "commit message.",
"content": {
"path": "full/path",
"mode": "edit",
"data": "new content"
}
}
但结果失败 - 未找到。
有谁知道在哪里发送这个请求以及这种格式是否正确?
(格式的灵感来自 - http://swanson.github.com/blog/2011/07/23/digging-around-the-github-api-take-2.html)
谢谢!