For instance php, which can be found in the URL of the corresponding Topics page
o
Sorting Order
asc, desc
s
Sorting Criteria
stars, forks, updated
For instance, the /github/topics/framework/l=php&o=desc&s=stars route will generate the RSS feed corresponding to this page.
Repo Issues
Repo Pull Requests
User Followers
Repo Stars
Repo Branches
Files Commits
User name
Repo name
Branch name
File path
DIYgod
RSSHub
master
lib/router.js
If there are special characters such as / in the branch name, they need to be encoded with urlencode, usually / needs to be replaced with %2f
If there are special characters in the file path, you need to use urlencode to encode them, but the file path can be recognized normally / characters
If the file path ends with .rss, .atom, .json, you need to replace the . in the suffix with %2e
Reeder will make an error when subscribing to % 2erss or similar suffixes. At this time, add.rss after the route to subscribe
Such as: replace https://rsshub.app/github/file/DIYgod/RSSHub/master/lib/router%2ejs to https://rsshub.app/github/file/DIYgod/RSSHub/master/lib/router%2ejs.rss