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_urlstarred_url 类似于子 API,您可以调用它来获取该用户正在关注的人,或者该用户拥有的回购协议主演。

但是,那些大括号是什么意思?我将其设为 粗体 。我该如何使用它们?

这些是占位符值,您需要将其替换为实际值才能使用这些链接。

它用于提醒用户如何访问,例如,另一个用户的following_url。