For the Lilac Festival in Rochester, NY - Benjamin Golub
Just out of curiosity, why does Flickr insist on having that stupid "Photo Sharing!" in the title of every page? It just sounds childish. - Voyagerfan5761
"You can indeed filter by user. A user is actually a feed. Confusing I know.....but that is because think of what a "user" is; just a Shared RSS feed!
In the API documention it says "feed - the id of a feed." That is how you filter by "user"." - Benjamin Golub
"RSSmeme has gone mobile too: http://m.rssmeme.com/
It's using the RSSmeme API to pull the english version of the front page and make it mobile friendly. And it doesn't cost me $3/month :)" - Benjamin Golub
"No that won't work. Remember that entries is a list, feeds is a lit, and
notes is a list. So you have to iterate over each of them. But you've also
got the heirarchy wrong. It looks like this:
{
'entries':
[
{
'feeds': []
'notes':
[
{
'feed':
'content':
}
]
},
{
'feeds': []
},
]
}
My PHP is rusty but it'll be something like this:
foreach($entry in $json['entries]) {
foreach($note in $entry['notes'])
$name = $note['feed']['name'];
$content = $note['content']
}
Makes sense?" - Benjamin Golub