密码更改时的 iPhone FBConnect
当我遇到这个问题时,我正在测试测试人员发现的错误。我认为这是一个 FBConnect 错误,但我想我应该在这里尝试看看其他人是否遇到过这个问题:
我已经从 iPhone 应用程序 FBConnected 到 FB,正确登录并验证我可以恢复会话。然后,我去FB更改我的密码。下次我尝试从 iPhone 应用程序发布 FB 链接时。 FBStreamingDialog 显示但立即消失。调试后,窗口被“取消”(委托没有被调用,这很奇怪),并且 FBDialog 内的 webView 的返回 url 是“fbconnect:success”
有人知道发生了什么吗?
-大学教师
I was testing for a bug found by a tester 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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不熟悉 Facebook API,但“fbconnect:success”看起来更像是 Objective-C 选择器而不是 URL。这表明您的方法调用可能与表示 URL 的字符串混淆。当您发送选择器作为通知的一部分时,有时会发生这种情况。
只是一个疯狂的猜测。
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.