如何使用GitHub APIv3进行源导入

时间:2018-12-06 10:45:32

标签: github postman github-api-v3

背景: 我正在尝试构建一个将公用存储库复制到登录帐户的应用程序。

现在,我正在尝试在PostMan中进行源导入,并且我正在使用以下设置:

我对此链接提出了PUT请求:

https://api.github.com/repos/{myusername}/{empty github repository}/import

具有以下标头:

Accept:application/vnd.github.barred-rock-preview

有了这个身体:

{
  "vcs": "git",
  "vcs_url": "https://github.com/{owner of repo i want to copy}/{repo i want to copy}",
  "vcs_username": "{myusername}",
  "vcs_password": "{mypassword}"
}

我已阅读github API for importing repositories。但是我从服务器收到以下响应:

{
  "message": "Not Found",
  "documentation_url": 
  "https://developer.github.com/v3/migrations/source_imports/#start-an-import"
}

为什么服务器返回未找到?我如何使它工作

1 个答案:

答案 0 :(得分:1)

它需要Authentication才能得到404 Not Found

使用用户名和密码进行身份验证

输入网址:

https://{myusername}:{mypassword}@api.github.com/repos/{myusername}/{myreponame}/import

请求正文

{
  "vcs": "git",
  "vcs_url": "https://github.com/{ownerRepo}/{ownerRepoName}"
}

vcs_usernamevcs_password用于远程仓库,而不是您的仓库。