Retrieving one entry from Google Reader

I am working on a Google Reader project that lists posts from a feed on a page. From this page, I would like to link a new page to display the content of the selected post. I see that the post id is tag: google.com, 2005: reader / item / 1bf4b488adad6f1a, but I don't see a call that I can use to get its content directly.

Does anyone know of a solution other than getting all posts from the feed and finding the correct one?

+2


source to share


1 answer


You can tag an item with / reader / api / 0 / edit-tag with some unique id like the current Unix time and then extract all items with that tag (which is just one item) and then remove the tag. sort of a round way to do it, but as far as i know there is no API call to grab a single element using id.



0


source







All Articles