How to set properties for post while posting news feed using graph api
I am trying to set properties of post. And I am posting news feed using curl. I am setting properties like this but it is not working. $message = 'Message 1'; $caption = 'Caption 1';...
View ArticleCheck if user has liked a post or not with Facebook Graph API
I want to design a news feed with fully functioning likes/Unlike ,share and commenting,and of course fetching recent posts from users newfeed.Now here is the thing,I want to check whether a user has...
View ArticleSearch for posts using Facebook Graph Api
I want to search for posts(news-feed) using graph API for the past 30 days of data? what is the best practice to do that? And does Facebook Graph API has an API limit to limit the request of HTTP...
View ArticleGet home feed of a particular user of a specific time stamp using graph API
I am trying to build a Facebook application by using Facebook Graph API. I am trying to get the home feed of the application user for a particular time span. e.g. From 11-02-2014 to 15-07-2014. I have...
View ArticleHow to get news feed using Facebook graph api?
I want to get my news feed (just as what is shown on facebook home page) using Facebook graph api https://graph.facebook.com/me/home However, the facebook api document says that this is an outdated...
View ArticleFacebook page fans didn't get notification for image upload using Graph API
I use this code for uploading an image to the album on my own Facebook page. $facebook = new \Facebook\Facebook([ "app_id" => {app-id}, "app_secret" => {app-secret}, "default_graph_version"...
View ArticleHow to access my own news feed and videos, photos I share?
I'm just making a simple widget where I can display my facebook feed as customized, like grid view. When I was submitting for app review, there was so much permission when it was my own feed only. I...
View ArticleLIMIT, SINCE and UNTIL parameters in page feed
I'm trying to get the news feed of page (I'm admin of that page) using the limit, since and until parameters, but it doesn't work, it doesn't work even in graph api explorer tool. I'm requesting the...
View ArticleHow to show your own facebook data on a website
I got "The question you're asking appears subjective and is likely to be closed." when I started to write my this and a lot of similar titles popped up.So I've browsed them all and only two might...
View Articlegetting high resolution photos that were posted on a page wall/feed
I'm getting my page wall with the open graph. And when someone posted a photo, I get it on the JSON{ "id": "27888702146_10150369820322147", "from": { "name": "brocoli", "category": "Record label",...
View ArticleFacebook graph api started to return only the first 10 posts in a group feed
a few days ago I started to experience troubles accessing facebook group data feed using graph api (i am using v2.8 but the results are the same also with older versions). The graph api call started to...
View Articleforcing open graph video (og:video) content to display as clickable image...
Is there a way to set og:video or one of its meta values so that it displays in feeds as an image link back to the originating URL rather than as an embedded video?
View ArticleFacebook Graphic API 2.8: Get page posts by date/keywords?
I want to get a page's posts by facebook graphic api(2.8, without FQL), I have page_id, so I write something like this on graphic api testing page: {post-id}/feed?limit=100 I know facebook only allow...
View ArticleIn Facebook Graph API - Is LIMIT parameter realy functional?
I'm trying to collect all the posts of my company page with this kind of queryhttps://graph.facebook.com/v2.2//feed?limit=250&fields=id,type,status_type,comments{id},likes{id},sharesProblem is that...
View ArticleGet Facebook feed for a "normal" user
I would want to read the feed for a given user (a normal user, like me - not a VIP) and I would want to use python. So, I would to use facebook-sdk for Python.I've written a little code:import facebook...
View ArticleFacebook Graph: unable to get group feed
I'm trying to get the group feed via Facebook Graph API.According to the documentationhttps://developers.facebook.com/docs/graph-api/reference/v2.8/group/feedI'm trying to costruct the appropiate url...
View ArticleFacebook graph api - Is it possible to get facebook posts from a public page...
Is it possible to get feeds from facebook page with query filter?Egs:I know feeds from a page is possible using: https://graph.facebook.com/v2.9/102627429803979/feedI want...
View ArticleMissing content in newsfeed: https://graph.facebook.com/me/home?
If I compare the content on https://graph.facebook.com/me/home?access_token=... and my actual facebook news feed, they are not the same as each other ie one has content that the other doesn't have and...
View ArticleI am trying to retrieve the news feed for a particular type using the Graph API
I want to retrieve the activity feed but of a certain type to eliminate extra processing in my code. https://graph.facebook.com/me/home?limit=200&access_token= I get all types of feed from the...
View Articlefb graph api group feed on specific type only
https://graph.facebook.com/v2.10/FB_GROUP_ID/feed?fields=attachments{title,media,subattachments,type,url},type,created_time,description,message,message_tags&limit=10&access_token=MY_ACCESS_TOKE...
View ArticleFacebook Post to feed asynchronously
I'm using Facebook graph API to post to Users Friends Feed after some action in my App. Now, my code iterates over the friend list and make a POST call with appropriate message and link in each...
View ArticleGet instagram own/self feed with facebook graph api
I'm quite new using instagram API/Graph API but I can't find answers to my questions.Since Instagram API is deprecated, now we have to deal with instagram/facebook graph API.I am aware of the new...
View ArticleFacebook Graph API: Retrieve feed with comments & likes for individual posts...
Is there a way to retrieve all facebook posts in the feed with their comments & likes in one API call?Currently I have to make an API call to retrieve the feed and for each idividual post one more...
View ArticleFacebook graph api page feed images
I am able to fetch my page feeds by graph api. But the only problem is the pictures The feeds contain more than 1 pictures however the graph api only return 1 picture for me. How can I fetch all the...
View ArticleHow to get user from comment on page posts use feed
I got the comments list from the feed, but I could not get their user name and avatar, I used the graph explorer and there were no fields to retrieve the user information that was commented.I tried,...
View ArticleWhat types of posts are in a feed?
I was wondering what all the possible types of posts I can expect in a feed. The documentation at http://developers.facebook.com/docs/reference/api/post/ mentions that the type field could be link,...
View ArticleProcessing hugely varied JSON data from Facebook Graph API news feed
OK so I have authenticated fine and understand JSON including how to process it with PHP...http://php.net/manual/en/function.json-decode.phpBut my issues are that the JSON data that the API returns...
View ArticleHow to submit the screencast to Facebook for permission
I want to list the user's Facebook posts (user feed). For this, we need permission, for permission we need to send the screencast of our app. Without permission, I cannot load the user feed, and so I...
View ArticleHow to simply get Facebook public page post feed
It seems to me I am delving unnecessarily deep into GraphAPI and app creation to do this simple thing, but I can't figure out any other way.What I want for my personal website(nothing connected to...
View ArticleGetting which users shared a post
With the graph api, when I query for the feed of a user or page, there are some posts that have been shared by users, and I can see the data about the number of shares within the data section of one...
View Article