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'm developing an app for iOS and trying to implement the "tag" people feature found in the official Facebook app. When you tag people, it will automatically display "blablabla With username".

The API requires me to tag a place also. Why is this? I just want to say that "I am with username". Not specify the place. Is there any way to do this?

share|improve this question

2 Answers

up vote 2 down vote accepted

I don't think so, from the docs:

tags 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.

share|improve this answer

You can issue a direct POST to the Graph API endpoint me/posts, which allows you to optionally tag people and/or add location. See https://developers.facebook.com/docs/reference/api/user/#posts for more info.

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.