I'm looking at the Facebook Graph API and trying to pick out any pictures that a user has in their news feed.
I've found that if I use the API /me/feed I can get access to the entire feed. Each entry in the returned data array has a field called "type" which describes what kind of object it is. For example, I've seen the following:
"type": "status"
"type": "photo"
"type": "video"
etc...
Obviously I don't want the status, video or etc types and would like to filter out those results on the server but haven't figured out how. I was hoping it'd be something as simple as adding a query string like ?type=photo but that isn't the case.
Is there any way to filter the feed on the server side so I don't need to get down a lot of data for a few pictures?