I'm developing an iPhone app and I'd like to be able to include a message with the Facebook Request GraphAPI call that includes some of my friends. Normally when commenting in FB I would type "@name1", "@name2" and their FB profile would come up and they would get a notification that I tagged them in a comment.

Is there a way to format the "message" parameter in the ios SDK such that user's names appear and they're tagged in the message?

link|improve this question

69% accept rate
please follow this link stackoverflow.com/questions/5906052/… – Amit Jan 5 at 11:12
feedback

1 Answer

You should specify the user ids of the friends mentioned in the post by using the to field as suggested here: https://developers.facebook.com/docs/reference/api/post/ but you should just pass in a comma separated list of id when posting. When getting you get back an array of objects.

link|improve this answer
I tried adding a key/value pair of @"fbuid#", "to" as well as [NSArray arrayWithObject:@"fbuid#"], "to" and neither method tagged the fb user in the post. – FishStix Jan 7 at 1:18
Works for me when I did it in the Graph API Explorer. Can you test it there to see if it works for you? – DMCS Jan 7 at 3:33
Hey, can you provide the exact json, or the exact set of key/value pairs you used in Graph API Explorer? I tried all last night using the "to", "message_tags", and "tags" (on an image API call), and nothing was working. – FishStix Jan 10 at 17:24
The to is a comma separated list of ID parameters – DMCS Jan 10 at 17:36
tried that too... maybe just a concrete example would clarify what possibly small thing I'm doing wrong – FishStix Jan 11 at 1:52
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

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