简体   繁体   中英

How can I list my github repository and create a new github repository using postman

我想使用邮递员测试一些端点 1. 列出我所有的存储库 2. 创建存储库 2. 删除存储库和 4. 重命名存储库

  1. For Listing all the repositories - GET Request on below URL

https://api.github.com/users/<user-name>/repos

  1. For Creating Repository - POST request on below URL

https://api.github.com/user/repos

  1. For deleting the Repositories - DELETE request on below URL

https://api.github.com/repos/<:owner>/<:repo>

For details on what are the arguments required, Please read the official Github API V3 documentation - https://developer.github.com/v3/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM