Facebook /{user-id}/feed filters - facebook-graph-api

Based on Facebook documentation:
https://developers.facebook.com/docs/graph-api/reference/v2.3/user/feed
the filter modifier should retrieve only posts that match a particular stream filter.
So trying on the Graph API Explorer the following query:
me/feed?filter=app_2305272732
should only get me photo posts and not all posts like I'm getting back.
Has anyone any better luck with stream filters? Is this a facebook bug?
thanks.

Yes this a Facebook Bug and as of today it is not fixed. Below is the link to this bug, you can subscribe it to track its status. Bug

Related

Get the Date on which a particular page was liked by me using Facebook Graph API

Is there any way using FB Graph API by which I can find the date on which the particular page was liked by me?
Thanks
No, there is not.
The date/timestamp of when a “like” happened is not available via the API.

Facebook API : page feeds

I would like to integrate Facebook page's feeds to my website.
I'm trying to use the Graph API, everything works fine, but I cannot get the attached pictures (picture field).
/v2.6/{page_id}/feed
But I only get the id, created_time and message fields.
Can someone helps me with this ?
I probably miss something but I cannot found what.
Thanks by advance.
/v2.6/{page_id}/feed?fields=message,picture,...
You don´t get the additional fields if you don´t ask for them.
Existing fields: https://developers.facebook.com/docs/graph-api/reference/v2.6/post

get a list of liked videos by user using facebook graph api

I am developing an app on windows phone 8, using the facebook graph api.
for that, i need, for a particular user, all the youtube video posts that he/she has liked ever, but I haven't succeeded till now, in doing this.
in what way i can achieve this?
You might find "FQL/Like" useful for this.
Use SELECT user_id,object_type,object_id FROM like WHERE user_id=me() AND object_type = 'list' instead. Try it in FQL query explorer, and you will see that 'list' are all video results.

How to get Tour Dates information from a band page through API

I'm working on a web site for a friend's band and I want to pull information from their facebook band page. Specifically I am looking to get tour dates. I am a beginner with the facebook APIs, but I did read through all of the documentation and I couldn't find anything on the tour date information through the graph API. I can pull basic info from them, but I can't seem to figure out how to get tour dates. Any help is much appreciated. Thank you!
The Tour Dates are provided by the Bandsintown Facebook app (ID: 123966167614127). As such, you need to use their API to access the dates.
Fortunately, Bandsintown.com does offer a nice API. Check it out at: http://www.bandsintown.com/api/requests
The above was just to obtain the dates as you see in the 'Tour Dates' link for most popular bands.
If the band uses Facebook events along with the app, you could just do a simple call to something like https://developers.facebook.com/tools/explorer/?method=GET&path=coldplay%2Fevents
If the band is using the Events functionality on Facebook you can use that to retrieve a list of all tour dates. Check the Events API page in the Facebook documentation:
http://developers.facebook.com/docs/reference/api/event/
And look at their example of what this looks like here:
http://developers.facebook.com/tools/explorer/?method=GET&path=331218348435

Facebook Page - Get Post feedback and impression via Graph API

I'm trying to get some insights on a list of Posts by a Page on Facebook.
To be specific, I want to get the information highlighted in this blog post via the API.
But I can't figure out how, anyone knows how?
As far as I know it's only possible using the "stream" table. So you've got to use FQL to query this data. Using this technique you'll only get the impressions directly. Feedback rate can be calculated by adding #comments and #likes and dividing the result by #impressions. Hope they'll add this to the insights graph api as well.
MartinHN
Refer to https://developers.facebook.com/docs/reference/api/#analytics
If you are trying to aggregate multiple pages or a page other than the requesting app then you may need grant read_insights permissions to your application.
Refer to http://developers.facebook.com/docs/reference/api/insights/