如何使用curl Puts到github API?

时间:2015-09-06 00:11:15

标签: curl github-api

有许多github API示例。但是,我无法辨别如何使用cURL和API将GUT发送到github。特别是,我正在尝试自动关注用户。 我试过了:

curl --user "myusername:mypassword" -X PUT "/myusername/following/personIdliketofollow" https://api.github.com/

以及:

curl --user "myusername:mypassword" -X PUT "" https://api.github.com/myusername/following/personIdliketofollow

及其多种组合。 我看过hereherehere以及其他sites

1 个答案:

答案 0 :(得分:2)

卫生署。似乎发布问题是找到答案的最佳方式。我花了好几个小时。我会继续发布答案以节省其他时间。为了使用cURL到PUT到Github跟随另一个用户,语法是:

curl --user "username:password" -X PUT -d "" https://api.github.com/user/following/personYoudLiketoFollow