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 wanted to use the iOS UI view dialog window for SSO and some answers stated to set both trySafariAuth and tryFBAppAuth to No. "trySafariAuth" is a pretty obvious one, but what does the tryFBAppAuth parameter control and why would I set that to NO?

share|improve this question

2 Answers

up vote 0 down vote accepted

tryFBAppAuth when set to true is a flag which indicates to try and obtain access token from Facebook application (if installed on the device). This is basically a SSO. trySafariAuth set to NO is enough to have iOS login dialog instead of Safari one.

hope this helps

share|improve this answer
so would the access token property in the Facebook object be set to nil if I set that flag to "NO"? – MonkeyBonkey Sep 9 '11 at 13:14

The tryFBAppAuth == YES will attempt to get the user's login credentials from the Facebook app, if it is installed. A user is usually logged into that app, so it will return that current user's credentials. If that app is not available or otherwise cannot return such credentials, then...

If trySafariAuth == YES then the Safari browser will be called up to prompt the user for login credentials.

Otherwise, if the credentials have not been returned from either method, then a popup dialog will appear that collects the user's login credentials (like apps used to do).

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.