Authentication Android-Twitter API-状态/转发的身份验证错误

Authentication Android-Twitter API-状态/转发的身份验证错误,authentication,twitter,Authentication,Twitter,我正在尝试检索给定推特ID的推特转发列表。以下是我的请求: TwitterClient client = new TwitterClient(twitterSession); client.getRetweetsService().list(Long.parseLong(objectID), new Callback<Response>() { ... etc ... } 但是,我收到了以下消息(如果我使用twitters示例链接也是如此) 有人能帮我吗?在这个网站上,它提

我正在尝试检索给定推特ID的推特转发列表。以下是我的请求:

TwitterClient client = new TwitterClient(twitterSession);
    client.getRetweetsService().list(Long.parseLong(objectID), new Callback<Response>() { ... etc ... }
但是,我收到了以下消息(如果我使用twitters示例链接也是如此)

有人能帮我吗?在这个网站上,它提供了一种检索转发的方法

“返回id参数指定的100条最新推文的集合。”但它实际上是一条帖子,而只是转发推文

interface Retweets {
@GET("/1.1/statuses/retweets/{id}.json")
void list(@Path("id") long objectID, Callback<Response> cb);
https://api.twitter.com/1.1/statuses/retweets/509457288717819904.json
{"errors":[{"code":215,"message":"Bad Authentication data."}]}