当我浏览gist.github.com上的要点时,它会显示一个友好的名字。例如。对于 https://gist.github.com/stuartleeks/1f4e07546db69b15ade2它显示了stuartleeks / baz
这似乎是由它在gist的文件列表中显示的第一个文件决定的,但我想知道是否有任何方法可以通过API检索它?
答案 0 :(得分:0)
不是直接,而是can get with the Gist API the JSON information associated to a gist,重复使用您网址的ID:
GET /gists/:id
在您的情况下:https://api.github.com/gists/1f4e07546db69b15ade2
它包括:
"files": {
"baz": {
"filename": "baz",
和
"owner": {
"login": "stuartleeks",
这应该足以推断出名称stuartleeks/baz
。