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 have used the following code to get user's friend list:

NSString* fql = [NSString stringWithFormat:@"SELECT name,uid FROM user WHERE uid IN ( SELECT uid2 FROM friend WHERE uid1=%lld )",appDelegate.session.uid];
NSDictionary* params = [NSDictionary dictionaryWithObject:fql forKey:@"query"];
[[FBRequest requestWithDelegate:self] call:@"facebook.fql.query" params:params];

And I want to tag friends in my status post. I know this can be achieved by Facebook Graph api-

@[{user_id}:1:{name}]

But I don't know how to implement this. No idea. Can anyone please guide me how to implement this Facebook Graph API?

share|improve this question

2 Answers

To the best of my knowledge, you can't tag users like this using the Graph API. The functionality you're looking for is a feature limited to the Facebook website only.

share|improve this answer

You can now do this using Open Graph. You will need to create status post using Open Graph api though:

Open graph beta: How can you tag friends in a action?

share|improve this answer

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.