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 a Facebook SSO working perfectly on my app, using last release of Facebook Objective-C SDK. I need to ask an extra permission inside the app if user do "something". I don't need to ask that permission if user gave it to me before, so, I guess, in Facebook SDK there should be a method

-(BOOL) checkPermission:(NSString*) permission;

so I can use it like this:

if( [facebook checkPermission:@"email"] ) {

Is there a way to do this?

share|improve this question

1 Answer

up vote 6 down vote accepted

SDK not providing direct method for checking specific permissions but you can check if user granted permission to your application by checking permissions connection of user object in Graph API

GET https://graph.facebook.com/me/permissions

Same can be achieved with FQL query on permissions table

SELECT email FROM permissions WHERE uid = me()
share|improve this answer
1  
Thank you, based on your answer, I tried using the method [facebook requestWithGraphPath:@"me/permissions" andDelegate:self];. Implementing the delegate method it works perfectly. Thank you again – netrace Jan 13 '12 at 11:24
1  
Could you add the code for your method to determine if the e-mail permission was active or not? What will 'email' be if the permission is granted? – Smikey Feb 29 '12 at 13:47

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.