I'm trying to figure out how to extract blogIDs out of the metafeed.
This seems like a common use case, but it isn't clear to me...
1. Query the metafeed for a user : http://www.blogger.com/feeds/profileID/blogs
2. Examine the results, which are filled with the following...
<category scheme="http://www.blogger.com/atom/ns#" term="sweet sweet
anticipation"/>
<category scheme="http://www.blogger.com/atom/ns#" term="Friday's
Feast"/>
<category scheme="http://www.blogger.com/atom/ns#" term="drunken
revelry"/>
3. Determine the blogIDs for each of these so their content can be
extracted using their ID
http://www.blogger.com/feeds/blogID/posts/default
How can I go from these category nodes to a blogID?
Thanks!