设置一个Github Commit RSS feed


93

我试图将我的github提交作为RSS feed,但是到目前为止,我还没有弄清楚。我知道可以使用以下语法提供私人供稿:

https://github.com/username.atom?token=token

但这是用户活动提要。我想要我的一个项目的提交提要。提前致谢!

太好了,谢谢!这是最终的语法:

https://github.com/username/repository_name/commits/branch_name.atom?login=login&token=token. 

虽然仍然无法查看所有分支上的提交。

Answers:


142

您想要的https://github.com/whatever/commits/master.atom,就像Cloudera烟道存储库一样https://github.com/cloudera/flume/commits/master.atom


3
我以为它遵循相同的模式。用您的存储库名称替换whatever并放在?token=token末尾。试一试。
CanSpice

1
您尝试master.atom代替branch_name.atom吗?
CanSpice

6
有没有办法获取项目标签的提要?某些项目使用标签来提供发行包。遵循这些作为RSS源将很有用。
TrinitronX

6
@TrinitronX-您可以将releases / atom替换为commits / master.atom来获取发布。因此,对于上面的示例,它是github.com/cloudera/flume/releases.atom
艾瑞卡(Erica)

6
您还可以获取特定文件历史记录的供稿:https://github.com/whatever/commits/master/path/to/file.atom
富兰克林于

7

除了官方原子(第一部分)以外,还有另一种RssHub

GitHub正式提供了一些官方RSS feed:

回购版本:https : //github.com/ :owner/:repo/releases.atom

回购提交:https : //github.com/ :owner/:repo/ commits.atom

用户活动:https//github.com/user.atom

私人供稿:https : //github.com/ :: user.private.atom?token= : secret(登录后,您可以在仪表板页面中找到“订阅新闻供稿”)


RssHub:

Github仓库

示例:https//rsshub.app/github/repos/yanglr

路由: /github/repos/:user

参数:

  • 用户(必填):用户名

Github语言趋势

示例:https//rsshub.app/github/trending/daily/javascript

路由: /github/trending/:since/:language?

参数:

  • 由于(必需):时间范围,在趋势页面URL中可用,每天可选

  • 语言(可选)

    语言,可以在趋势页面URL中找到

Github存储库问题

示例:https//rsshub.app/github/issue/DIYgod/RSSHub

路由: /github/issue/:user/:repo

参数:

  • 用户(必填):用户名

  • 回购(必填):存储库名称

Github存储库拉取请求

示例:https//rsshub.app/github/pull/DIYgod/RSSHub

路由: /github/pull/:user/:repo

参数:

  • 用户(必填):用户名

  • 回购(必填):存储库名称

Github用户

示例:https//rsshub.app/github/user/followers/yanglr

路由: /github/user/followers/:user

参数:

  • 用户(必填):用户名

Github存储库星

示例:https//rsshub.app/github/stars/yanglr/CaliburnMicro-Calculator

路由: /github/stars/:user/:repo

参数:

  • 用户(必填):用户名

  • 回购(必填):存储库名称

Github搜索结果

示例:https//rsshub.app/github/search/RSSHub/bestmatch/desc

路由: /github/search/:query/:sort?/:order?

参数:

  • 查询(必填):搜索关键字

  • 排序(可选):排序选项(默认为最佳匹配)

  • 顺序(可选):排序顺序,desc和asc(默认desc降序)

在此处输入图片说明

此外,如果不需要使用帐户登录,则可以使用Feed43为任何网页创建供稿。官方教程,请单击此处查看。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.