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 publish a checkin from an application and I have read the Checkin Documentation to do so with an HTTP POST request. Now I would like to do it, but without the publish_stream permission. Can I do the same thing with Dialogs (JavaScript SDK) ? I tried with the FB.ui method, but I don't know how to do it properly.

FB.ui( { method: 'feed', message: 'My message', place: '110506962309835' } );

share|improve this question

1 Answer

up vote 0 down vote accepted

The Feed dialog does not take a place parameter – and Facebook say, this is “by design”. (See this bug report: https://developers.facebook.com/bugs/428651263853608)

So if you want to publish checkins, I’m afraid there is no way around it, you’ll have to use the API and make the post on behalf of the user, asking for the permission first.

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.