我正在尝试测试 GitHub API 并探索它的不同端点。我有不同的可能性,比如说最初的 get 请求 on https://api.github.com
。
返回的列表是:
{
"current_user_url": "https://api.github.com/user",
"current_user_authorizations_html_url": "https://github.com/settings/connectio ns/applications{/client_id}",
"authorizations_url": "https://api.github.com/authorizations",
"code_search_url": "https://api.github.com/search/code?q={query}{&page,per_pag e,sort,order}",
"commit_search_url": "https://api.github.com/search/commits?q={query}{&page,pe r_page,sort,order}",
"emails_url": "https://api.github.com/user/emails",
"emojis_url": "https://api.github.com/emojis",
"events_url": "https://api.github.com/events",
"feeds_url": "https://api.github.com/feeds",
"followers_url": "https://api.github.com/user/followers",
"following_url": "https://api.github.com/user/following{/target}",
"gists_url": "https://api.github.com/gists{/gist_id}",
"hub_url": "https://api.github.com/hub",
"issue_search_url": "https://api.github.com/search/issues?q={query}{&page,per_ page,sort,order}",
"issues_url": "https://api.github.com/issues",
"keys_url": "https://api.github.com/user/keys",
"notifications_url": "https://api.github.com/notifications",
"organization_repositories_url": "https://api.github.com/orgs/{org}/repos{?typ e,page,per_page,sort}",
"organization_url": "https://api.github.com/orgs/{org}",
"public_gists_url": "https://api.github.com/gists/public",
"rate_limit_url": "https://api.github.com/rate_limit",
"repository_url": "https://api.github.com/repos/{owner}/{repo}",
"repository_search_url": "https://api.github.com/search/repositories?q={query} {&page,per_page,sort,order}",
"current_user_repositories_url": "https://api.github.com/user/repos{?type,page ,per_page,sort}",
"starred_url": "https://api.github.com/user/starred{/owner}{/repo}",
"starred_gists_url": "https://api.github.com/gists/starred",
"team_url": "https://api.github.com/teams",
"user_url": "https://api.github.com/users/{user}",
"user_organizations_url": "https://api.github.com/user/orgs",
"user_repositories_url": "https://api.github.com/users/{user}/repos{?type,page ,per_page,sort}",
"user_search_url": "https://api.github.com/search/users?q={query}{&page,per_pa ge,sort,order}"
}
有没有办法进入Postman,或者跟进促进者从这些中生成一个集合?为了确保遵循Postman Json Collection 格式,需要编写一些脚本。
如果 Postman 以外的其他解决方案完全适合这个问题,我会全力以赴。
我做了什么:
- 我试图搜索一些GitHub API作为Postman Collection,但没有找到。
- 我试图理解 Postman Json Collection 格式,这对我来说并不容易编写一些脚本来创建一个。也许有人做过?
- 我可以“查找并替换 :
"([a-z_])*":
withcurl -H "Authorization: token ####"
。有没有办法将整个集成到 Postman 中?
除非我付出很多努力,否则我无能为力。而且,我可能会在其他时候被卡住,因为我正在探索高级 API 功能、技术和选择,而不仅仅是GitHub API。所以这不会是最后一次。