getting post feeling states ( facebook graph-api ) - facebook-graph-api

Is it possible to get facebook post's feeling states using graph api ? I didn't find any docs on this . Let me know if there is any way to get it .

No . there is no way to get it using facebook graph api.

Related

Facebook graph api post status

I'm trying to post on my own feed , but im not able to ,as this page says we cant on feed directly but by using 'share' link
can someone please explain? how to post on feed using simple curl command?
https://developers.facebook.com/docs/graph-api/changelog/breaking-changes#login-4-24
It is no longer possible to post to a user profile with the API (or with curl), the docs are very clear about that. You can only use the Share Dialog.

Facebook API: Get people list who like a page

Is there any way to get all people list who liked our page using Facebook API? I looked at the documentation but i am not able to find that.
Can any one help me out. Thanks
Simple answer: There is no endpoint for that in the Graph API. You can get some breakdowns via the Page Insights, but not the actual people which like your Page.
See
https://developers.facebook.com/docs/graph-api/reference/page
https://developers.facebook.com/docs/graph-api/reference/v2.4/insights
https://developers.facebook.com/docs/graph-api/reference/v2.4/insights#page_users

How do I get video likes of my posted videos through facebook api

I am trying to get video-likes programmatically, the graph api requires a video-id, but I do not know how to get to the video-id?
Is there a way to get a list of all my posted video-ids?
Thanks,
You can get the videos with the /me/videos/uploaded endpoint:
https://developers.facebook.com/docs/graph-api/reference/v2.2/user/videos
/{user-id}/videos/uploaded shows all videos that were published to Facebook by this person.

How can I get a list of users who like my Facebook Page?

I'm using Graph API and the closest thing I found is page_fan table. but it's page_id column is not indexable...
Yes, you can get a listing of the page fans (the latest 500) via:
https://www.facebook.com/browse/?type=page_fans&page_id=PAGE_ID
However, this is not via the Graph API.
Many of us have tried and failed to find a way to get a list of users who've liked you page. Facebook seems pretty tight about not letting that information out. Your best bet is to post on your wall and hope your page's wall post is seen on the liked personal feed by facebook algorithm.

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/