android – 方法retrieveRequestToken引发“与服务提供商通信失败:null”

前端之家收集整理的这篇文章主要介绍了android – 方法retrieveRequestToken引发“与服务提供商通信失败:null”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用twitter4j从我的应用程序发送推文.当我调用方法retrieveRequestToken时,我得到错误“与服务提供商的通信失败:null”.
public static void askOAuth(Context context) {
    try {
        // Use Apache HttpClient for HTTP messaging
        consumer = new CommonsHttpOAuthConsumer(CONSUMER_KEY,CONSUMER_SECRET);
        provider = new CommonsHttpOAuthProvider(
                "https://api.twitter.com/oauth/request_token","https://api.twitter.com/oauth/access_token","https://api.twitter.com/oauth/authorize");
        String authUrl = provider.retrieveRequestToken(consumer,CALLBACK_URL);
        Toast.makeText(context,"Authorize this app!",Toast.LENGTH_LONG).show();
        context.startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse(authUrl)));
    } catch (Exception e) {
        Log.e(APP,e.getMessage());
        Toast.makeText(context,e.getMessage(),Toast.LENGTH_LONG).show();
    }
}

谢谢.

解决方法

如果这是ICS,我强烈建议不要使用StrictMode.enableDefaults ;.

ICS不允许在UI线程中发生Http请求,所以当你这样做时,你会得到这个错误.

解决这个问题,请做provider.retrieveRequestToken(consumer,CALLBACK_URL);在后台线程以及provider.retrieveAccessToken(consumer,verifier);.

资料来源:http://code.google.com/p/oauth-signpost/issues/detail?can=2&start=0&num=100&q=&colspec=ID%20Type%20Status%20Priority%20Milestone%20Owner%20Summary&groupby=&sort=&id=71

原文链接:https://www.f2er.com/android/311041.html

猜你在找的Android相关文章