curl --request GET --user "example@example.com:password" https://api.feedbin.com/v2/starred_entries.json correctly returns an array of IDs, however, querying these entries as described with GET /v2/entries.json?ids=4088,4089,4090,4091 with any number of appropriate IDs returns a response of no matches found.
Additionally, curl --request GET --user "example@example.com:password" https://api.feedbin.com/v2/entries.json?starred=true returns the same response: no matches found.
Please let me know if I am doing something wrong or the API is broken.
I'm unable to retrieve starred entries.
curl --request GET --user "example@example.com:password" https://api.feedbin.com/v2/starred_entries.json
correctly returns an array of IDs, however, querying these entries as described withGET /v2/entries.json?ids=4088,4089,4090,4091
with any number of appropriate IDs returns a response ofno matches found
.Additionally,
curl --request GET --user "example@example.com:password" https://api.feedbin.com/v2/entries.json?starred=true
returns the same response:no matches found
.Please let me know if I am doing something wrong or the API is broken.