How to Send Tweets from a Google Sheet

It is possible to send bulk tweets from Google Spreadsheet using Google Scripts. To get started, you need to include the OAuth1 libarary in your project, create a new Twitter app on apps.twitter.com and pass the Consumer Keys and API Secret to the Google Script project.

function sendTweet(user, tweet, tweet_type) {
  var twitterService = getTwitterService_();

  // If the Google Apps user has authorized the Twitter service
  if (twitterService.hasAccess()) {
    // Remove @ from the Twitter user name, if found
    var twitterUser = user.trim().replace(/^\@/, '');

    var api = 'https://api.twitter.com/1.1/';

    // Send a public @tweet or direct message (DM)
    if (tweet_type === 'DM') {
      api += 'direct_messages/new.json?screen_name=' + twitterUser + '&text=' + encodeString_(tweet);
    } else if (tweet_type === 'TWEET') {
      tweet = '@' + twitterUser + ' ' + tweet;
      api = 'statuses/update.json?status=' + encodeString_(tweet);
    }

    var response = twitterService.fetch(api, {
      method: 'POST',
      muteHttpExceptions: true,
    });
    if (response.getResponseCode() === 200) {
      Logger.log('Tweet sent');
    } else {
      Logger.log('ERROR: ' + JSON.parse(response.getContentText()).errors[0].message);
    }
  }
}

// Google Script has trouble sending tweets that contain !*()'
// so we replace these variable from the status text
function encodeString_(q) {
  var str = q;
  str = str.replace(/!/g, 'Ị');
  str = str.replace(/\*/g, '×');
  str = str.replace(/\(/g, '[');
  str = str.replace(/\)/g, ']');
  str = str.replace(/'/g, '’');
  return encodeURIComponent(str);
}
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.