Upload and Post Images to Twitter with Google Script

There are two ways to post tweets that contain images. You can either upload the picture(s) to an image hosting service and then paste the image URL into the tweet. The other option is that you natively upload the image into Twitter.

Here’s a sample snippet that shows how you can use Google Apps Script to upload and post images to Twitter with the new Twitter API. You can either pull an image from the web or you can use the DriveApp service to pull an image from your Google Drive.

To get started, you need to create a new Twitter app and generate the Consumer API keys. You’ll also need to include the Twitter Library in your Apps Script project (key MKvHYYdYA4G5JJHj7hxIcoh8V4oX7X1M_)

function sendTweetwithImage() {
  var twitterKeys = {
    TWITTER_CONSUMER_KEY: 'aa',
    TWITTER_CONSUMER_SECRET: 'bb',
    TWITTER_ACCESS_TOKEN: 'cc',
    TWITTER_ACCESS_SECRET: 'cc',
  };

  var props = PropertiesService.getUserProperties();

  props.setProperties(twitterKeys);

  var twit = new Twitter.OAuth(props);

  if (twit.hasAccess()) {
    try {
      // DriveApp.getFileById(id).getBlob()

      var imageUrl = 'http://img.labnol.org/di/M1.jpg';
      var imageBlob = twit.grabImage(imageUrl, 'image/jpeg');
      var uploadImg = twit.uploadMedia(imageBlob);

      if (uploadImg) {
        var status = 'Hello @labnol';

        var response = twit.sendTweet(status, {
          media_ids: uploadImg.media_id_string,
        });

        if (response) {
          Logger.log('Tweet Sent ' + response.id_str);
        } else {
          // Tweet could not be sent
          // Go to View -> Logs to see the error message
        }
      }
    } catch (f) {
      Logger.log(f.toString());
    }
  }
}
Amit Agarwal

Amit Agarwal

Google Developer Expert, Google Cloud Champion

Amit Agarwal is a Google Developer Expert in Google Workspace and Google Apps Script. He holds an engineering degree in Computer Science (I.I.T.) and is the first professional blogger in India.

Amit has developed several popular Google add-ons including Mail Merge for Gmail and Document Studio. Read more on Lifehacker and YourStory

0

Awards & Titles

Digital Inspiration has won several awards since it's launch in 2004.

Google Developer Expert

Google Developer Expert

Google awarded us the Google Developer Expert award recogizing our work in Google Workspace.

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards in 2017.

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional (MVP) title for 5 years in a row.

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator title recognizing our technical skill and expertise.

Email Newsletter

Sign up for our email newsletter to stay up to date.

We will never send any spam emails. Promise.