-1

我正在尝试使用OAuth在我的 iphone 应用程序中连接到 twitter。我已经设置了所有内容并弹出登录弹出窗口,但是登录后,它重定向到我的回调 url。点击取消按钮只会重新打开登录屏幕。如何创建回调 url 以使应用关闭登录屏幕并允许用户发送推文?提前致谢

4

1 回答 1

0

替换 SA_OAuthTwitterViewController.m 中的以下方法,它应该可以解决您的问题(注意,我是从 github 页面上报告的问题中得到的 :))

- (void) webViewDidFinishLoad: (UIWebView *) webView {
    _loading = NO;
    //[self performInjection];
    if (_firstLoad) {
        [_webView performSelector: @selector(stringByEvaluatingJavaScriptFromString:) withObject: @"window.scrollBy(0,200)" afterDelay: 0];
        _firstLoad = NO;
    } else {
        // This else clause modified to work with twitter apps that have the callback URL set: https://dev.twitter.com/apps/
        // Bug details: https://github.com/bengottlieb/Twitter-OAuth-iPhone/issues/79
        [_engine requestAccessToken];

        if ([_delegate respondsToSelector: @selector(OAuthTwitterController:authenticatedWithUsername:)])
            [_delegate OAuthTwitterController: self authenticatedWithUsername: _engine.username];
        [self dismissModalViewControllerAnimated:YES];
    }

    [UIView beginAnimations: nil context: nil];
    _blockerView.alpha = 0.0;
    [UIView commitAnimations];

    if ([_webView isLoading]) {
        _webView.alpha = 0.0;
    } else {
        _webView.alpha = 1.0;
    }
}

希望它能解决你的问题...

于 2013-01-31T14:59:32.613 回答