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.

in my application on iphone when i call

[facebook authorize:permissions delegate:self];

the framework show login dialog automatically if i'm not loggedin, and then show permission dialog (This is great for the frist time that a user use the application). But if i've aleady get permission i always show the dialog with message "You have aleady authorized this application".

So, how can i login without show permission dialog? Or can i check if i've aleady get permission to the application?
In the framework sample code the only way to login is by authorize method...

Thanks in advance.

share|improve this question

1 Answer

up vote 0 down vote accepted

You could store the Access Token (make sure to request offline_access permission) locally on the device and next time the user uses your App check if the token's still active (make a call to /me/permissions or something like that ) - if it is still active you don't need to go back to Facebook to reauthenticate- if it isn't, the current Login code you're using should still be fine.

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.