I tagged some items "toread" and to my delight there was a reading list feature but then the RSS feed for it https://ln.ht/_/feed/~2097/toread doesn't have any entries.
Hi there,
"toread" bookmarks are considered private, so one must be authenticated to see them even in the RSS feed.
There's two ways of doing so, the first is to provide an access token in the header, e.g:
curl \ -H Authorization:'Bearer <your-access-token>' \ https://ln.ht/_/feed/~2097/toread
Alternatively (which is probably easier to integrate with your favorite feed reader), you can also include the token as the query parameter
auth_token
, e.g:curl 'https://ln.ht/_/feed/~2097/toread?auth_token=<your-access-token>'
Oh, I love that actually! That's great, I love that the toread tags are private and that I can have an RSS that only I can read. Since I'm using Calibre with this feed, I've got to use the second method. Thank you so much!