Is there any Graph API to create or fetch stories (those short posts that live only 24 hours) from Facebook? There was a similar question back in 2017 (Fetch Facebook stories vith API). Has anything changed since then?
Related
Can we get Facebook Home Feed, where we can see friends post/ status, using Facebook API ?
As of October 6th, 2015, this endpoint is no longer available.
https://developers.facebook.com/docs/graph-api/reference/v2.7/user/home
Graph API Reference /{user-id}/home
This endpoint returns posts a person sees in their News Feed. The posts returned by this API may not be identical to the posts a person would see on facebook.com or in Facebook's mobile apps.
As of October 6th, 2015, this endpoint is no longer available. Please consider using the /user-id/feed edge instead.
You may use /me/feed to get the user's posts :-)
I want to get user's wall post(photo or video) shared from facebook pages.
I am using graph.facebook.com/USER_ID/feed (or user-id/posts) option to get this data via read_stream permission. (Is there any other option available for the required task?)
It works before 10 feb, 2015.
The problem is that it doesn't return the user's shared story (shared picture/video from fb page) anymore. It shows the user's status and uploaded pics/video post only.
The older post (shared pix/video) are still visible. But no new posts are showing on fb graph API explorer. How can I get the user's shared story (shared picture/video from fb pages) from facebook?
I have a website and a very active Facebook group.
I need a Two way sync between the Website and the Facebook Group.This means anything posted on the website should be automatically posted on my Facebook group and anything posted on my Facebook Group should be posted on my website.
At the moment i have figured out the way to post from my website using the graph api.
My question is how do i do the vice versa i.e whenever a post gets posted on my website i automatically update it on my website.
Is there a api to do this ,some kind of push from facebook or is continuous polling only way ?
My question is,
if I am the user using an authorized web application, can I post something to my friends' timeline at once, and without any interactions with me?
I've read this topic and other relative posts on stackoverflow, and I understand that facebook had made some changes.
But when I read Feed Dialog document, I find out that it said:
Your application can also publish directly to a profile's timeline without interaction on the part of someone using your app. To accomplish this, use the corresponding Graph API call
while "Graph API call" is an unavailable link. And I can't figure out what the corresponding graph api call is.
You cannot Post to User's Friends timelines through the Graph API, as simple as that. You can only Post to the authorized User's wall through the Graph API.
The only way to achieve the similar functionality, as the blog post that you have checked suggests is,
If you want to allow people to post to their friend’s timeline from your app, you can invoke the feed dialog. Stories that include friends via user mentions tagging or action tagging will show up on the friend’s timeline (assuming the friend approves the tag).
I need to pull all the updated data (wall posts , photos in albums etc) from a facebook page to my application.
currently what I am doing is frequently polling the page wall feed and other non wall post objects(like albums ) and then save the updated fields.
I'm using Graph API .
I tried facebook real-time. But its not giving enough details.
Is there a way to receive notifications from pages via graph API once post or any object of the page get any update ?
In theory this is now available through Facebook's real-time updates, at least for wall posts and photos. In practice, I'm having trouble getting it to work.