2

在尝试使用图形 API 使用 fb 登录时,会出现一个显示消息的网页。

安全警告:请将上面的 URL 视为您的密码,不要与任何人共享。在 ios fb 图形 api 中。

此错误并非总是发生,而是一半时间发生。

如何跳过这条 fb 消息?

4

2 回答 2

0

更改网址:

self.redirectUri = @" http://www.facebook.com/connect/login_success.html ";

FBGraph.m 到

self.redirectUri = @" https://m.facebook.com/connect/login_success.html ";
并检查。

于 2013-10-08T11:30:26.940 回答
0

我找到了一种解决方案。我希望它对你有用。

只需将此 UIWebViewDelegate 方法粘贴到您的 FbGraph.m 文件中......

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{

    if([request.URL.relativeString hasPrefix:@"https://www.facebook.com/connect/login_success.html" ])
        self.webView.hidden=TRUE;
    return YES;
}
于 2013-08-01T09:46:06.600 回答