如何在不使用TweetPic for twitter的情况下上传图片和推文?

时间:2011-12-14 09:42:02

标签: android android-layout twitter android-twitter

在我的应用程序中,我使用tweetPic上传图像,但图像只能在tweetPic上看到。 而不是我想要在Twitter上上传图片以及自定义消息。怎么可能呢? Twitter OAuth也是必需的。

我想要任何类似的演示或示例应用程序。

感谢。

1 个答案:

答案 0 :(得分:0)

我已经搜索了很多,但仍然没有得到我想要的答案。

最后,我使用此功能在Twitter上使用自定义消息上传照片:

File picture = new File(APP_FILE_PATH + "/"+filename+".jpg");  
   // Create TwitPic object and allocate TwitPicResponse object 
   TwitPic tpRequest = new TwitPic(TWITTER_NAME, TWITTER_PASSWORD); 
   TwitPicResponse tpResponse = null;  
   // Make request and handle exceptions                            
   try {         
     tpResponse = tpRequest.uploadAndPost(picture, customMessageEditText.getText()+" http://www.MySite.com/");

   } 
   catch (IOException e) {         
      e.printStackTrace(); 
   } 
   catch (TwitPicException e) {         
   e.printStackTrace(); 
   }  
   // If we got a response back, print out response variables                               
   if(tpResponse != null) {         
      tpResponse.dumpVars();
      System.out.println(tpResponse.getStatus());
      if(tpResponse.getStatus().equals("ok")){

      Toast.makeText(getApplicationContext(), "Photo posted on Twitter.",Toast.LENGTH_SHORT).show();

   }
 }

仍然在寻找Twitter演示,在Twitter上发布推特图片,自定义消息与Twitter OAuth和不使用twitPic。

享受。 :)

感谢。