Skip to content

Instantly share code, notes, and snippets.

@leitmedium
Created February 29, 2012 15:42
Show Gist options
  • Save leitmedium/1941810 to your computer and use it in GitHub Desktop.
Save leitmedium/1941810 to your computer and use it in GitHub Desktop.
function twitterFollowers(account, date){
var params = “date= ” + dateToString(date);
params += “&account=” + account;
var response;
response = UrlFetchApp.fetch(“http://backend.server/stats/twitter.csv?” + params, headers);
return response.getContentText();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment