获取 GitHub Gist 观星者计数

Get GitHub Gist Stargazer Count

我可以用这个获取存储库 stargazer 计数。

curl https://api.github.com/repos/mottosso/be/stargazers

但是我怎样才能得到Gist的观星者呢?

例如

curl https://api.github.com/gists/mottosso/9b25f547d5364f050494/stargazers

这似乎不是直接可用的要点。
您可以 check if a gist is starred, but a starred gists like richardcornish/file-git-notes 在其描述中不包含星星。

https://api.github.com/gists/4676556

这会让您放弃 https://gist.github.com/richardcornish/4676556/stars 页面以获得“36”(该要点的总星数)。

而且那个计数器的 xpath 不是一个明显的

//div[@id='js-flash-container']/
div[@class='container']/
div[@class='gist js-gist-container gist-with-sidebar with-full-navigation']/
div[@class='gist-sidebar clearfix']/
div[@class='sunken-menu vertical-right repo-nav js-repo-nav js-repository-container-pjax js-octicon-loaders']/
div[@class='sunken-menu-contents']/
ul[@class='sunken-menu-group']/
li[@class='tooltipped tooltipped-w'][3]/
a[@class='sunken-menu-item selected']/
span[@class='counter']