Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to send a wall post to facebook and tag one of my friend via graph api. I have my friends facebook ID. where should I write his/her Id to be able to tag him/her in my wall post?

params.putString("access_token", facebook.getAccessToken());
params.putString("Message","I m here");

String response = facebook.request("me/feed", params, "POST");

Thanks for your helps

share|improve this question
@ user1448565 I am also looking for the same. did you get solution for this? – Manikandan Feb 27 at 10:24

3 Answers

up vote 1 down vote accepted

Comma-separated list of Facebook IDs of people tagged in this Post. For example: 1207059,701732. This field is returned as the with_tags field when the Post is read.

NOTE: You cannot specify this field without also specifying a place.

Where place is :- Facebook Page ID of the location associated with this Post

Check this:-

https://developers.facebook.com/docs/reference/api/user/#posts

share|improve this answer

1) Create a String array of friends id and pass it to .request() method

for(int j=0;j<numArr.length;j++)
{
   Utility.mAsyncRunner.request("Photo_id/tags/"+numArr[j], param, "POST", new SampleUploadListener(), null); 
}
share|improve this answer

Have a look at the graph api: http://developers.facebook.com/docs/reference/api/post/

message_tags can be used to tag anything

share|improve this answer
params.putString("message_tags",userIdOfFriend); I did this when I am sending my message but it is now shown on my wall. It shows only "I am here" – user1448565 Jun 19 '12 at 15:15
The parameter is called tags – see developers.facebook.com/docs/reference/api/user/#posts – CBroe Jun 19 '12 at 16:00
Getting this error when I use tags. I don't want to do checkin, I want to only tag a friend on a wallpost. {"error":{"message":"(#100) Cannot specify user tags without a place tag","type":"OAuthException","code":100}} – user1448565 Jun 19 '12 at 16:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.