What is supposed to be returned when Facebook Graph API end edge is interests?Currently it is returning balnk in my code.
This return The interests listed on someone's profile under Likes > Interests.
For more details on this please refer Graph API documentation
Related
I used Facebook Graph API for getting Feeds, I used below query :
me/home?fields=full_picture,description,message,comments,likes,created_time,id,link,caption,name,from.fields(id,name,picture)
Now, How can i identify that Post is already Liked or not by current login user.
You must use the Latest Facebook Graph API... It works for me.
I am reading through the docs and other questions on Stackoverflow. Am I getting this right that it is actually impossible to retrieve the whole friendlist of the user? The permissions user_friends only refers to friends that have previously logged into the same app with Facebook.
I am wondering if I just oversee the solution or if it is indeed impossible to get access to a user's friends because there is no API that would allow to do so?
Since graph API v2.0, this is no longer possible:
See
https://developers.facebook.com/docs/graph-api/reference/v2.2/user/friends#readperms
This will only return any friends who have used (via Facebook Login) the app making the request.
https://developers.facebook.com/docs/apps/upgrading#upgrading_v2_0_user_ids
In v2.0, the friends API endpoint returns the list of a person's friends who are also using your app. In v1.0, the response included all of a person's friends.
As Tobi says, in V2.0 this is no longer possible.
But, if you want to get only name and profile picture, then its possible!
Check taggable_friends
Note that The id that returns this API call isn't unique, it may change for every request for same user, so you can't use that field to identify user, you can use it ONLY for tagging.
I want to do follow facebook user in ios using graph api or using some custom api. I prefer this link for php and second one who has no ans or last but not least follower button.
Please help me to follow a user in ios.
Check my answer here: facebook graph api to get follower count of different account
This is no longer possible via the Graph API >= v2.0.
I have IOS app for that login is through Facebook, For some feature I need full list of friends.
With current version of Graph API calling "me/friends" only returns person's friends who also use the app.
So now getting full friends list not at all possible or is there any way to get full list.
Also I need to invite my friends to use the app.
Note: App is not a Game app.
Thanks in Advance.
Despite what the earlier comments on this question might tell you, this is 100% possible with the me/taggable friends endpoint in Graph v2.0.
However there are three things worth noting:
Facebook is strict on the usage of this endpoint, so you'll need to get your use of it approved by the review team.
Taggable friends can only be used in the context of "friends you're about to tag on Facebook.com". This endpoint cannot be used for any other purpose.
When you query me/taggable_friends, the id returned for each user is NOT their Facebook id. It is a short-lived token that can be passed via the API to instruct Facebook to tag that user.
I am Using FBGraph API of Facebook for iPhone, here i get friend list, my profile, my feeds and other values but how can I get My Friends Wall Data through this API.
My Question is that How can i Get My Friends wall information though this API for iPhone.
The documentation covers this:
See the "feed" section on this page for details.
e.g. https://graph.facebook.com/123456/feed
where 123456 is the user id
Note. You'll need to ensure you have the read_stream permission.
https://graph.facebook.com/user/feed i think this is the graph path for getting feed info.