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 check whether the user has give publish_stream permission to my application or not. If not want to get publish_stream permission.

share|improve this question

2 Answers

if you are using the Koala Gem just use:

#check wether wallpost is allowed
permissions = graph.get_connections('me','permissions')
@has_wallpost_permission = permissions[0]['publish_stream'].to_i == 1 ? true : false 
share|improve this answer
That's half of it but how do you tell Koala to request certain permissions from the user when they authorise the app? – Dave Sag Aug 27 '12 at 2:25

You must autorize user with publish_stream permission. In rails I do it with OmniAuth gem.

My post can help you - Publish stream in Facebook & Twitter with OmniAuth

share|improve this answer
The scenario is the user has authorize the app. I want to check if the user given certain permission to my app. if not I want to take that permission. Is this possible in facebook graph API or in rails 3. My app is running in facebook canvas. – AliZubi Nov 18 '11 at 8:14
You can use FQL query to check permission – super_p Nov 18 '11 at 12:33

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.