我尝试在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}]}
所以,我按照此链接解决了我的问题:How to Migrate Twitter API from v1 to 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来解决这个问题