以这个非常简单的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,您可以调用它来获取该用户正在关注的人,或该用户已加星标的回购。
但是,那些括号意味着什么?我做的那个 Bold 。我该如何使用它们?
答案 0 :(得分:1)
这些是占位符值,您需要用实际值替换才能使用这些链接。
它用于提醒用户如何访问另一个用户的following_url。
没有{/other_user}
,该网址https://api.github.com/users/zhuhuihuihui/following会列出所有用户。
{/other_user}
,该网址https://api.github.com/users/zhuhuihuihui/following/xxx会检查您是否关注了用户xxx
。