Save Twitter Emails in a Google Sheet

This Google Script will save the email addresses and usernames from Twitter’s Lead Generation Cards into a Google Sheet. You publish this Google Script as a web app, the Twitter card makes a POST HTTP request and the payload is parsed and saved in the Google Sheet.

We are using the HYPERLINK method so the Twitter user name automatically points to the profile page on the Twitter website.

function doPost(e) {
  if (typeof e !== 'undefined') {
    try {
      var params = e.parameter;

      var formula = '=hyperlink("https://twitter.com/' + params.screen_name + '", "@' + params.screen_name + '")';

      var date = Utilities.formatDate(new Date(), 'GMT', 'MM-dd-yyyy HH:mm:ss');

      var id = 'sheetID';

      SpreadsheetApp.openById(id).appendRow([date, params.name, params.email, formula]);

      return ContentService.createTextOutput('Data added');
    } catch (e) {
      return ContentService.createTextOutput(e.toString());
    }
  }
}

Amit Agarwal is a web geek, solo entrepreneur and loves making things on the Internet. Google recently awarded him the Google Developer Expert and Google Cloud Champion title for his work on Google Workspace and Google Apps Script.

Awards & Recognition

Google Developer Expert

Google Developer Expert

Google awarded us the Developer Expert title recogizing our work in Workspace

ProductHunt Golden Kitty

ProductHunt Golden Kitty

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

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional title for 5 years in a row

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator award for technical expertise

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

We will never send any spam emails. Promise 🫶🏻