【问题标题】:How to get list of followers using Twitter Fabric Android?如何使用 Twitter Fabric Android 获取关注者列表?
【发布时间】:2015-11-13 09:21:27
【问题描述】:

我想在不使用 twitter4j 的情况下使用 Twitter Rest Api。 Fabric 很好,但我找不到像 getUserFollowers() 这样的方法。我不知道为什么会有。无论如何,我想使用此服务调用我的用户关注者 ID。 https://dev.twitter.com/rest/reference/get/followers/ids

我从面料网站(http://docs.fabric.io/android/twitter/access-rest-api.html#tweets) 上看了一个教程。有一个用于获取自定义服务的类。但我无法理解如何将其称为发送参数。我将其更改为如下

import com.twitter.sdk.android.core.TwitterApiClient;
import com.twitter.sdk.android.core.TwitterSession;
import retrofit.http.GET;
import retrofit.http.Query;

public class MyTwitterApiClient extends TwitterApiClient  {

    public MyTwitterApiClient(TwitterSession session) {
        super(session);
    }

    public CustomService getCustomService() {
        return getService(CustomService.class);
    }

    interface CustomService {
        @GET("/1.1/followers/ids.json")
        void show(@Query("user_id") long id);
   }
}

我认为当我发送一个 id 时,服务会带来关注者 id。

MyTwitterApiClient aa = new MyTwitterApiClient(session);
aa.getCustomService().show(userId);

但应用程序已停止。我怎么了?

LogCat 是

5897-15897/com.tumymedia.tumer.lylafortwitter E/AndroidRuntime﹕ FATAL EXCEPTION: main
    Process: com.tumymedia.tumer.lylafortwitter, PID: 15897
    java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=140, result=-1, data=Intent { (has extras) }} to activity {com.tumymedia.tumer.lylafortwitter/com.tumymedia.tumer.lylafortwitter.MainActivity}: java.lang.IllegalArgumentException: CustomService.show: Must have either a return type or Callback as last argument.
            at android.app.ActivityThread.deliverResults(ActivityThread.java:4058)
            at android.app.ActivityThread.handleSendResult(ActivityThread.java:4101)
            at android.app.ActivityThread.access$1400(ActivityThread.java:177)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1497)
            at android.os.Handler.dispatchMessage(Handler.java:102)
            at android.os.Looper.loop(Looper.java:145)
            at android.app.ActivityThread.main(ActivityThread.java:5942)
            at java.lang.reflect.Method.invoke(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:372)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1400)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1195)
     Caused by: java.lang.IllegalArgumentException: CustomService.show: Must have either a return type or Callback as last argument.
            at retrofit.RestMethodInfo.methodError(RestMethodInfo.java:123)
            at retrofit.RestMethodInfo.parseResponseType(RestMethodInfo.java:285)
            at retrofit.RestMethodInfo.<init>(RestMethodInfo.java:113)
            at retrofit.RestAdapter.getMethodInfo(RestAdapter.java:213)
            at retrofit.RestAdapter$RestHandler.invoke(RestAdapter.java:236)
            at java.lang.reflect.Proxy.invoke(Proxy.java:397)
            at com.tumymedia.tumer.lylafortwitter.$Proxy16.show(Unknown Source)
            at com.tumymedia.tumer.lylafortwitter.MainActivity$1.success(MainActivity.java:55)
            at com.twitter.sdk.android.core.identity.TwitterAuthClient$CallbackWrapper.success(TwitterAuthClient.java:230)
            at com.twitter.sdk.android.core.Callback.success(Callback.java:40)
            at com.twitter.sdk.android.core.identity.AuthHandler.handleOnActivityResult(AuthHandler.java:91)
            at com.twitter.sdk.android.core.identity.TwitterAuthClient.onActivityResult(TwitterAuthClient.java:161)
            at com.twitter.sdk.android.core.identity.TwitterLoginButton.onActivityResult(TwitterLoginButton.java:131)
            at com.tumymedia.tumer.lylafortwitter.MainActivity.onActivityResult(MainActivity.java:96)
            at android.app.Activity.dispatchActivityResult(Activity.java:6543)
            at android.app.ActivityThread.deliverResults(ActivityThread.java:4054)
            at android.app.ActivityThread.handleSendResult(ActivityThread.java:4101)
            at android.app.ActivityThread.access$1400(ActivityThread.java:177)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1497)
            at android.os.Handler.dispatchMessage(Handler.java:102)
            at android.os.Looper.loop(Looper.java:145)
            at android.app.ActivityThread.main(ActivityThread.java:5942)
            at java.lang.reflect.Method.invoke(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:372)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1400)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1195)

【问题讨论】:

  • 严重的面料有缺陷? :D 哈哈
  • 也许不是哈哈 :) 我找不到像获得关注者这样的方法
  • 你知道我该如何使用那个休息吗?
  • 请发布你的日志
  • 你能告诉我如何使用那个rest api链接编写java代码(dev.twitter.com/rest/reference/get/followers/ids

标签: java android rest twitter


【解决方案1】:

您需要对 Twitter 进行身份验证才能调用 API 并获取结果。我没有在这段代码中看到这种情况。 (也许你是在这段代码之外做的?)

https://dev.twitter.com/oauth@https://dev.twitter.com/oauth 上有关 Twitter 身份验证的详细信息

【讨论】:

  • 我已经认证过了。我可以取 userId、username 等。
【解决方案2】:

实际上,Fabric 使用改造来进行 REST Api 调用,如前所述 在 Fabric 文档中,为了获取关注者的 ID,我们需要传递 user_id 作为参数并在响应中检索列表。

MyTwitterApiClient.java

import com.twitter.sdk.android.core.Callback;
import com.twitter.sdk.android.core.TwitterApiClient;
import com.twitter.sdk.android.core.TwitterSession;
import retrofit.client.Response;
import retrofit.http.GET;
import retrofit.http.Query;

    public class MyTwitterApiClient extends TwitterApiClient {
        public MyTwitterApiClient(TwitterSession session) {
            super(session);
        }

        /**
         * Provide CustomService with defined endpoints
         */
        public CustomService getCustomService() {
            return getService(CustomService.class);
        }
    }

    // example users/show service endpoint
    interface CustomService {
        @GET("/1.1/followers/ids.json")
        void list(@Query("user_id") long id, Callback<Response> cb);
    }

现在在 MainActivity 我们将对用户进行身份验证,然后通过获取 会话我们将检索对应的所有关注者列表 到用户 ID。

MainActivity.java

public class MainActivity extends AppCompatActivity {

    // Note: Your consumer key and secret should be obfuscated in your source code before shipping.
    private static final String TWITTER_KEY = "YOUR_TWITTER_KEY";
    private static final String TWITTER_SECRET = "YOUR_TWITTER_SECRET";
    TwitterLoginButton loginButton;
    SharedPreferences shared;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        TwitterAuthConfig authConfig = new TwitterAuthConfig(TWITTER_KEY, TWITTER_SECRET);
        Fabric.with(this, new Twitter(authConfig), new Crashlytics());
        setContentView(R.layout.activity_main);
        shared = getSharedPreferences("demotwitter", Context.MODE_PRIVATE);
        loginButton = (TwitterLoginButton) findViewById(R.id.login_button);
        loginButton.setCallback(new Callback<TwitterSession>() {
           @Override
           public void success(Result<TwitterSession> result) {
               // Do something with result, which provides a TwitterSession for making API calls
                TwitterSession session = Twitter.getSessionManager()
                        .getActiveSession();
                TwitterAuthToken authToken = session.getAuthToken();
                String token = authToken.token;
                String secret = authToken.secret;

//Here we get all the details of user's twitter account

                System.out.println(result.data.getUserName()
                        + result.data.getUserId());
                Twitter.getApiClient(session).getAccountService()
                        .verifyCredentials(true, false, new Callback<User>() {

                            @Override
                            public void success(Result<User> userResult) {

                                User user = userResult.data;
//Here we get image url which can be used to set as image wherever required.      
                 System.out.println(user.profileImageUrl+" "+user.email+""+user.followersCount);

                            }

                            @Override
                            public void failure(TwitterException e) {

                            }

                        });
                shared.edit().putString("tweetToken", token).commit();
                shared.edit().putString("tweetSecret", secret).commit();
                TwitterAuthClient authClient = new TwitterAuthClient();
                authClient.requestEmail(session, new Callback<String>() {
                    @Override
                    public void success(Result<String> result) {
                        // Do something with the result, which provides the
                        // email address
                        System.out.println(result.toString());
                        Log.d("Result", result.toString());
                        Toast.makeText(getApplicationContext(), result.data,
                                Toast.LENGTH_LONG).show();
                    }

                    @Override
                    public void failure(TwitterException exception) {
                        // Do something on failure
                        System.out.println(exception.getMessage());
                    }
                });
                MyTwitterApiClient apiclients=new MyTwitterApiClient(session);
                apiclients.getCustomService().list(result.data.getUserId(), new Callback<Response>() {

                    @Override
                    public void failure(TwitterException arg0) {
                        // TODO Auto-generated method stub

                    }

                    @Override
                    public void success(Result<Response> arg0) {
                        // TODO Auto-generated method stub
                        BufferedReader reader = null;
                        StringBuilder sb = new StringBuilder();
                        try {

                            reader = new BufferedReader(new InputStreamReader(arg0.response.getBody().in()));

                            String line;

                            try {
                                while ((line = reader.readLine()) != null) {
                                    sb.append(line);
                                }
                            } catch (IOException e) {
                                e.printStackTrace();
                            }
                        } catch (IOException e) {
                            e.printStackTrace();
                        }


                        String result = sb.toString();
                    System.out.println("Response is>>>>>>>>>"+result);
                    try {
                        JSONObject obj=new JSONObject(result);
                        JSONArray ids=obj.getJSONArray("ids");
              //This is where we get ids of followers
                        for(int i=0;i<ids.length();i++){
                        System.out.println("Id of user "+(i+1)+" is "+ids.get(i));
                        }
                    } catch (JSONException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                    }

                });
           }

           @Override
           public void failure(TwitterException exception) {
               // Do something on failure
           }
        });
    }
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        // Pass the activity result to the login button.
        loginButton.onActivityResult(requestCode, resultCode, data);
    }

}

【讨论】:

  • 非常感谢。所以我可以将这种代码风格用于其他宁静的 json;)
  • 是的,您可以通过以下方式获得更多帮助:androidbeasts.wordpress.com/2015/07/22/…
  • 很抱歉打扰您,但我收到 TwitterApiException: No authentication challenge found 错误
  • 您是否在上面的代码中传递了您的密钥和秘密,可能是这个问题,您需要通过您的结构帐户中找到的那些,如果仍然存在问题,请单独发布您的 logcat 或可能发布问题。
  • in reader = new BufferedReader(new InputStreamReader(arg0.response.getBody().in())); getBody() 方法无法解析。请帮忙
【解决方案3】:

在改造 2.0 中, 界面->

public interface FollowersService {
        @GET("/1.1/followers/list.json")
        Call<ResponseBody> list(@Query("screen_name") String userId);
}

调用方法->

FollowersService followersService = followersTwitterApiClient.getFollowersService();
        Call<ResponseBody> call = followersService.list(userId);
        call.enqueue(followerCallback);

自定义 API 客户端 ->

public class FollowersTwitterApiClient extends TwitterApiClient {

    public FollowersTwitterApiClient(TwitterSession twitterSession){
        super(twitterSession);
    }

    public FollowersService getFollowersService(){
        return getService(FollowersService.class);
    }
}

【讨论】:

    猜你喜欢
    • 2017-01-28
    • 1970-01-01
    • 2015-12-21
    • 2015-06-20
    • 2013-02-02
    • 2017-10-20
    • 2010-10-12
    • 2014-03-01
    • 1970-01-01
    相关资源
    最近更新 更多