从这些服务中获取KEY和TOKEN然后
/*
* Upload File to twitPic and get url . Then append this url to your twitter message.
*/
public static String upload_twic_pic(File file)
throws TwitterException {
String url = null;
if (file != null) {
Configuration conf = new ConfigurationBuilder().setMediaProviderAPIKey(TWITPIC_KEY).build();
ImageUpload upload = new ImageUploadFactory(conf).getInstance(MediaProvider.PLIXI); //Use ImageUploadFactory
url = upload.upload(file);
}
return url;
Run Code Online (Sandbox Code Playgroud)| 归档时间: |
|
| 查看次数: |
5806 次 |
| 最近记录: |