1

我是 Twitter 与我的 Android 应用程序集成的新手。我必须在 Twitter 上发布图像和视频。我可以使用 Twitpic 在 Twitter 上成功发布图片,但没有找到在 Twitter 上发布视频的任何线索。

请通过相关链接帮助我或向我建议一种方法来做同样的事情。

很抱歉在没有任何代码的情况下提出如此直接的问题..

4

1 回答 1

3

您可以在 TwitPic 中上传媒体。此代码用于图像,但您也可以以同样的方式上传视频。

 class ImageSender extends AsyncTask<URL, Integer, Long> {
    private String url;

    protected void onPreExecute() {
        //mProgressDialog = ProgressDialog.show(SendImageActivity.this, "", "Sending image...", true);

        //mProgressDialog.setCancelable(false);
        //mProgressDialog.show();
    }

    protected Long doInBackground(URL... urls) {            
        long result = 0;

   //     TwitterSession twitterSession = new TwitterSession(SendImageActivity.this);            
        AccessToken accessToken         = getAccessToken();

        Configuration conf = new ConfigurationBuilder()                 
        .setOAuthConsumerKey(Constants.CONSUMER_KEY) 
        .setOAuthConsumerSecret(Constants.CONSUMER_SECRET) 
        .setOAuthAccessToken(mToken) 
        .setOAuthAccessTokenSecret(mSecreat) 
        .build(); 

        OAuthAuthorization auth = new OAuthAuthorization (conf, conf.getOAuthConsumerKey (), conf.getOAuthConsumerSecret (),
                new AccessToken (conf.getOAuthAccessToken (), conf.getOAuthAccessTokenSecret ()));

        ImageUpload upload = ImageUpload.getTwitpicUploader ("8d012dd3948af2cdc42f93859908a717", auth);

        Log.d(TAG, "Start sending image...");

        try {
            url = upload.upload(new File(imagePath));
            result = 1;

            Log.d(TAG, "Image uploaded, Twitpic url is " + url);            
        } catch (Exception e) {        
            Log.e(TAG, "Failed to send image");

            e.printStackTrace();
        }

        return result;
    }

    protected void onProgressUpdate(Integer... progress) {            
    }

    protected void onPostExecute(Long result) {
        //mProgressDialog.cancel();

        String text = (result == 1) ? "Image sent successfully.\n Twitpic url is: " + url : "Failed to send image";
        System.out.println("Twitter Image==========="+text);
        Toast.makeText(getApplicationContext(), text, Toast.LENGTH_LONG).show();
    }
} 

  public AccessToken getAccessToken() {
    String token        = mToken;
    String tokenSecret  = mSecreat;

    if (token != null && tokenSecret != null) 
        return new AccessToken(token, tokenSecret);
    else
        return null;
}

不要忘记先做登录代码并使用库(罐子)。

于 2013-09-27T07:30:49.417 回答