iPhone FBConnect when password has changed
I was testing for a bug found by a t开发者_如何转开发ester when I ran across this. I think it's a FBConnect bug but I thought I would try here to see if anyone else has had this issue:
I've FBConnected from the iPhone app to FB, logged in correctly and verified that I can resume the session. Then, I go to FB and change my password. The next time I try to post a link to FB from the iPhone app. the FBStreamingDialog shows up but disappears immediately. Upon debugging, the window is "cancelled" (the delegate is not getting called which is strange) and the return url from the webView inside FBDialog is "fbconnect:success"
Does anyone have any idea what's going on?
-Don
I'm not familar with the Facebook API but the "fbconnect:success" looks more like an objective-C selector instead of a URL. That suggest you may have a method call somehow confused with a string representing the URL. This sometimes happens when you send a selector as part of a notification.
Just a wild guess.
精彩评论