Is there any way to get information in user About page using graph API?
For instance, we can get the user Work and education by going here
http://www.facebook.com/van.trankhanh.1/about
But there is no information about Work and education if we use this
https://graph.facebook.com/van.trankhanh.1?access_token=AAAEaY81Vw24BAB96Yf2VNWMm8GdjMctjxGQj3ycrtoi7RhMn4SCOOVGcgtaZCuyHbP3nNyKulleaQ440IvQKHWlub2TZC6TrIWrLGIYgZDZD
Related
Scenario
I'm building an application that needs the ability to post to users wall (personal profile) on behalf of a user on facebook. I remember before the way that I would do it is request a permission "publish_actions" but reading through their documentation i came to this page:
https://developers.facebook.com/docs/graph-api/changelog/breaking-changes/#login-4-24
which states that that is being deprecated.
They recommended an alternative which is using their sharing product found here but this seems like it would break one of the functionalies of my current application (I dont want to share content i want users to post it to whenever they choose to on whichever account they choose to).
Question
Is there a way to get posting to a users wall and NOT an event, page or group. If i'm correct I can still post data to events, pages and groups via API as normal but to a users wall its different? I need to post on their wall via api but i can't seem to find the permission.
My facebook api graph version for my app is 3.0 and im using their PHP SDK to make the requests.
how can I get pages liked by people who have liked PAGE A.
e.g
https://www.facebook.com/search/100281786832302/likers/pages-liked
here, 100281786832302 is the Page ID of "Amazon India".
If its possible using PHP graph api.
Thanks
That´s not possible at all with the Graph API, i am afraid. The Graph Search is only available on facebook.com - for real users.
With the Graph API, you can only get the Page likes of a user who authorized your App with the user_likes permission. Check out the docs for example code: https://developers.facebook.com/docs/graph-api/reference/v2.2/user/likes
I have scenario which I want to discuss with stackoverflow users that it is possible or not.
Scenario:
Suppose I have a facebook user unique Id and its page Id.Can I post On his pages using facebook Graph API or not. The user is not friend of mine.
If it is possible. Please provide me some sugggestions.
I was wondering if it would be possible to get a list of a Facebook Page fans and their birthday, then on their birthday have it post a birthday greeting on their wall? I want to do this without the use of a Facebook App and have it post directly from the Facebook Page to the users/fans wall (possibly using OpenGraph and PHP?). I just want to know if this can be done and what I should utilize in the Facebook API?
You cannot get details about a fan or post to their timeline / wall without using an app. There are separate permissions required to achieve what you are trying to do, and none of these are possible without using an app, and getting the user to install the app (with the correct permissions).
Use Facebook Ads and target your fan base only on their birthday. Facebook allows you to post the ad to fans but only on their birthdays. Click here for details
http://michaelbrandvold.com/blog/2011/01/2000-things-to-generate-20000-fans-wish-your-fans-a-happy-birthday/
I'm curious if it's possible to get the "friendship" information via the Facebook PHP API, meaning information about the friendship the logged in user and one of his friends share?
Information that is visible on this page:
https://www.facebook.com/profile.php?id=[YOUR ID]&and=[YOUR FRIENDS' ID]
Is this possible?
Via the Graph API you can query the /me object. Two properties you will want relationship_status and significant_other. I don't see where it specifies the "how long" part. Not from the Graph API nor from FQL.
Also see me/family in the graph.