Using latest github version of FB iOS SDK in my iOS app which previously worked fine authenticating with the Facebook app installed. Now in iOS 5 and using the new facebook mobile iOS app the url returned to my application is fb://authorize#unkown_error.

Has anyone encountered this. I verified that iOS SSO is enabled in my app in the facebook dev portal. I also tried creating a new facebook app from scratch and using that in my iOS app and it garnered the same result.

Thanks in advance.

link|improve this question
1  
Not that I feel this is a solution but if I force the authorization to happen via Safari it works fine. – redisant Oct 25 '11 at 15:42
It also happens in my case. Forcing authorization to Safari helps, but is noa a solution. Please post it here when you find the cause. – Lukasz Oct 30 '11 at 14:07
feedback

3 Answers

When you try to use Facebook SDK as it was on 4 nov 2011 and complete the tutorial you will run into trouble as mentioned above, because it does not yet implement ARC. If you want to use Storyboarding as well you run into the trouble that the appDelegate now has a slightly different scope. You should not, as the tutorial states, make the appDelegate you respond to Facebook delegate methods but you should doe this in the rootViewController.

I posted a code whit a fix on gitug: git@github.com:doozMen/Facebook-SDK-in-iOS5-and-using-storyboarding.git

link|improve this answer
feedback

You followed all the steps here?

link|improve this answer
yes, As I stated, this was working prior to iOS 5 and the latest facebook mobile update (not sure which event broke this). I also changed the handleOpenURL call in the app delegate to just use openURL also tried to add "Application does not run in background" = NO in my info.plist file. Also tried setting safariAuth:NO in facebook.m as recommended in a number of other forums where folks were trying to get the newest stuff working. – redisant Oct 25 '11 at 15:01
feedback

in Xcode 4.2.1 when adding the src folder according to the tutorial , you need to include it fully without removing the project file , but on the add files popup you need to to deselect the add to target. then in your linkage build rule add the resulting static library of Facebook to the build target and not the source itself. in that way Facebook compile as is and can be used with or with out ARC/SB .

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.