0

我尝试在 android 中使用 twitter 集成。我使用 twitter4j jar 来执行此操作。在发布到 Twitter 时,我收到了这个错误。

{"errors": [{"message": "The Twitter REST API v1 is no longer active. Please migrate to API v1.1. https://dev.twitter.com/docs/api/1.1/overview.", "code": 68}]}

所以,我按照这个链接解决了我的问题:如何将 Twitter API 从 v1 迁移到 v1.1?

很好,但是在我的代码中,我尝试将图像发布到 Twitter。不支持我班级的以下行代码:

OAuthAuthorization auth = new OAuthAuthorization(conf, conf.getOAuthConsumerKey(), conf.getOAuthConsumerSecret(), new AccessToken(conf.getOAuthAccessToken(), conf.getOAuthAccessTokenSecret()));
                ImageUpload upload = ImageUpload.getTwitpicUploader (com.cpt.realtor.socialsharing.SocialSharingConstants.TWITPIC_APP_KEY, auth);

如何通过从 v1 迁移到 v1.1 来解决这个问题

4

0 回答 0