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.

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.

share|improve this question

1 Answer

up vote 1 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.

share|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

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.