hello any i have used this code
MyTwitterApiClient apiclients = new MyTwitterApiClient(session);
Call<JSONObject> call = apiclients.getFollowersIds().show(session.getUserId(), null, true, true, 100);
call.enqueue(new Callback<JSONObject>() {
@Override
public void success(Result<JSONObject> result) {
Log.e(TAG, "onResponse: " + result.data.toString());
Log.e(TAG, "onResponse: " + result.response);
}
@Override
public void failure(TwitterException exception) {
exception.printStackTrace();
}
});