GitHub API返回Url的意思
GitHub API returned Url meaning
以这个非常简单的API为例,
https://api.github.com/users/zhuhuihuihui
在 JSON 格式的响应中,您会发现如下内容,
"following_url":"https://api.github.com/users/zhuhuihuihui/following
{/other_user}
",
"gists_url": "https://api.github.com/users/zhuhuihuihui/gists
{/gist_id}
",
"starred_url": "https://api.github.com/users/zhuhuihuihui/starred
{/owner}{/repo}"
,
好的,我知道 following_url
、starred_url
类似于子 API,您可以调用它来获取该用户正在关注的人,或者该用户拥有的回购协议主演。
但是,那些大括号是什么意思?我将其设为 粗体 。我该如何使用它们?
这些是占位符值,您需要将其替换为实际值才能使用这些链接。
它用于提醒用户如何访问,例如,另一个用户的following_url。
没有 {/other_user}
,url https://api.github.com/users/zhuhuihuihui/following 将列出所有关注的用户。
与 {/other_user}
,url https://api.github.com/users/zhuhuihuihui/following/xxx 将检查您是否关注用户 xxx
。
以这个非常简单的API为例,
https://api.github.com/users/zhuhuihuihui
在 JSON 格式的响应中,您会发现如下内容,
"following_url":"https://api.github.com/users/zhuhuihuihui/following
{/other_user}
",
"gists_url": "https://api.github.com/users/zhuhuihuihui/gists
{/gist_id}
",
"starred_url": "https://api.github.com/users/zhuhuihuihui/starred
{/owner}{/repo}"
,
好的,我知道 following_url
、starred_url
类似于子 API,您可以调用它来获取该用户正在关注的人,或者该用户拥有的回购协议主演。
但是,那些大括号是什么意思?我将其设为 粗体 。我该如何使用它们?
这些是占位符值,您需要将其替换为实际值才能使用这些链接。
它用于提醒用户如何访问,例如,另一个用户的following_url。
没有
{/other_user}
,url https://api.github.com/users/zhuhuihuihui/following 将列出所有关注的用户。与
{/other_user}
,url https://api.github.com/users/zhuhuihuihui/following/xxx 将检查您是否关注用户xxx
。