Personal RSS feed for links you want to read later.
Before the first deploy, set the API key secret used to authenticate add_entry:
firebase functions:secrets:set POCHURL_API_KEYThen deploy:
firebase deployTo add entries to your RSS feed, use your Cloud Functions endpoint with your API key:
curl --request POST \
--url https://add-entry-<SOMETHING>.app/ \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <YOUR_API_KEY>' \
--data '{
"link": "<THE LINK TO READ LATER>"
}'You can also specify a category:
curl --request POST \
--url https://add-entry-<SOMETHING>.app/ \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <YOUR_API_KEY>' \
--data '{
"link": "<THE LINK>",
"category": "github"
}'Available categories: github, docs, article, misc
Your RSS feed is available at your function's address (e.g., https://get-entries-<SOMETHING>.app).
You can use your favorite RSS feed reader (NetNewsWire or any other) to read your "Read it Later" links.
You can also subscribe to specific categories:
get-github- GitHub repositoriesget-articles- Blog posts and articlesget-docs- Documentationget-misc- Miscellaneous links
You can use the adding query in several ways.
For example, with Apple Shortcuts (like this one: Pochurl Shortcut) you can simply add a link to your feed from the share menu.
