我想用我的iphone應用程序中的OAuth連接到twitter。我已經設置了一切,登錄彈出窗口彈出,但是登錄後,它重定向到我的回調網址。點擊取消按鈕只需重新打開登錄屏幕。如何製作回叫網址以讓應用關閉登錄屏幕並允許用戶發送推文?在此先感謝Twitter OAuth重定向到我的回調URL
-1
A
回答
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;
}
}
希望它可以解決您的問題。 ..
相關問題
- 1. Codeigniter - Twitter。 oauth回調錯誤重定向
- 2. Withings API未重定向到我的回調URL(PHP/OAuth)
- 3. Twitter OAuth動態回調URL
- 4. 爲什麼在oauth回調url不會將我重定向到android中的onResume()?
- 5. ServiceStack OAuth的重定向URL
- 6. 重定向到OAuth中的授權url
- 7. Twitter OAuth沒有正確重定向到我的網站
- 8. Tumblr OAuth回調URL
- 9. Twitter OAuth不斷重定向到https://twitter.com/oauth/authenticate?oauth_token=XYZ
- 10. Auth0正在重定向到我的回調URL,並附加了#_ = _
- 11. 重定向問題:Twitter API Oauth
- 12. Twitter OAuth 1.0。 Opera重定向失敗
- 13. Twitter OAuth登錄和重定向
- 14. Twitter的OAuth的「無法驗證你」時,我指定一個回調URL
- 15. 中使用的NodeJS到Global.var臨時存儲重定向URL中使用OAuth的回調
- 16. 動態重定向URL - OAuth的
- 17. 回調函數 - url重定向
- 18. #加入到Google+的OAuth 2.0回調URL
- 19. OAuth的重定向
- 20. 我的.htaccess重定向被重定向到錯誤的URL
- 21. Rails設計Twitter OAuth重定向到表單以繼續oAuth註冊
- 22. ASP.Net 4.5 WebForms返回重定向到URL
- 23. PayPal不會重定向到返回URL
- 24. 回去或重定向到url
- 25. 如何在軌中chomp重定向url?我在使用Twitter的OAuth時遇到問題
- 26. 將Chrome擴展程序popup.html頁面重定向到Oauth的URL
- 27. iOS Twitter反向OAuth
- 28. Twitter API oAuth在添加回調URL時失敗簽名
- 29. 使用Scribe庫Oauth在Twitter與回調URL
- 30. 嘰嘰喳喳不重定向到android應用程序中的回調url
請提供您的代碼 – Mark
您的OAth密鑰中必須存在問題,請嘗試使用另一個密碼。 – Myaaoonn
您是否將您的代碼與演示項目中使用的代碼進行了比較,並查看它們是否以相同的方式工作? – MuhammadBassio