On my iPhone with the latest version of the Facebook app, if my mobile app (lets call it MyApp) is already authorized with Facebook, posting to the wall for the first time fails. (E.g. calling [facebook dialog...])

Here's the flow:

  1. Install MyApp on Phone
  2. Post to wall from within MyApp --> this leads to Authorization dialog in the Facebook App --> this comes back to MyApp --> then "Post to Wall" dialog is shown successfully

  3. Delete "My App"

  4. Install "My App" again

  5. Post to Wall --> this leads to Facebook App (no auth dialog since MyApp is already authorized) --> leads back to MyApp --> Post to Wall dialog unexpectedly visibly closes

None of the callbacks from FBDialogDelegate are called when this happens. (I put log statements in)

If I then:

  1. Post to wall again --> Dialog shows up correctly, dismissing the dialog initiates the proper callbacks

Any idea what's going on here? This may sound like a corner case, but anytime a user is using MyApp on multiple iOS devices, they will hit this issue. This may also repro if you have multiple IOS apps that use the same FB app ID.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Possible duplicate of first dialog after authenticating fails immediately and closes dialog

Have a look over there and see if one of the workarounds works for you.

link|improve this answer
That did the trick, specifically what is written in the comment by Senor "I ignore the error by changing line 413 of FBDialog.m to: if (!(([error.domain isEqualToString:@"WebKitErrorDomain"] && error.code == 102) || error.code == -999)), and now it works." – ch3rryc0ke Dec 1 '11 at 9:58
feedback

Your Answer

 
or
required, but never shown

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