Share details of post on a wall - facebook-graph-api

I am interested in tracking the user IDs of those who are sharing the wall posts on my fanpage. Does the graph api now support returning the user IDs of the user who have shared the wall post on their wall like I can see who all commented & liked the post?
Any possible workarounds?

yes it's possible you can do through facebook graph api.
http://developers.facebook.com/docs/reference/api/post/
get all post with comments + comment user id + liked user id.
these data managed by your own database.

Related

How to get the Profile name/Profile id of the Person who has liked the post in a fb page using facebook insights Graph API

I wanted to create a recommendation engine. I have a business page in facebook. I want to fetch the user names/user id and extra information of the persons who have liked the posts (like how google analytics gives for the website viewers). As far as i analysed, Facebook Graph API gives the count of the likes,comments etc.Could i get the user id's and timestamp of the person who have liked the posts along with the count

Facebook graph api: get post sharing history

I need this functionality: application must check shared or not user given post on his wall. Now I'm able get posts from user wall, and shared posts have status_type shared_story, but I can't get from which post it was shared, is there any way add this functionality with facebook api?

Posting on facebook user wall a custom field

Using facebook graph API and user access token(and cURL), I am posting message, photos to the user wall. Can anybody guide me, I want to post a photo, its description and along with this RATING(custom parameter/field). What I mean is, is there a way to add a custom field and publish/post on user's wall.

How to post on a friends wall with GraphAPI?

I'm using GraphAPI for posting to a friend's wall but I'm unable to do it.
I'm trying the below link:
http://graph.facebook.com/friendID/feed
Can anyone help me how to post to your friend's wall?
As of february, you can't post content to a friend's wall using the API - see here: https://developers.facebook.com/roadmap/completed-changes/#february-2013
Removing ability to post to friends walls via Graph API We will remove
the ability to post to a user's friends' walls via the Graph API.
Specifically, posts against [user_id]/feed where [user_id] is
different from the session user, or stream.publish calls where the
target_id user is different from the session user, will fail.
You can post links using the FB.ui function w/ the 'to' parameter set to a friend's id, however.
See the following change from 6th March 2013, posted on the list of completed changes in the Facebook Developers' Roadmap:
Removing ability to post to friends walls via Graph API
We will remove the ability to post to a user's friends' walls via the Graph API. Specifically, posts against [user_id]/feed where [user_id] is different from the session user, or stream.publish calls where the target_id user is different from the session user, will fail.
If you want to allow people to post to their friends' timelines, 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). For more info, see this blog post.

How can I get 'highlighted post' information from my fb profile page in my ios5 app using facebook api?

I'm developing an app for iPhone(ios5), where I need the information of the posts I made highlighted in my facebook profile. Using facebook-graph api its possible to get all the data of user profile but is there any way I can get highlighted posts data ? For example I want to count and keep track of how many posts I highlighted in fb timeline.
You can use [pageid]?fields=posts.fields(timeline_visibility)
Each highlighted post will have timeline_visibility set to "starred"