Skip to content

Instantly share code, notes, and snippets.

@leitmedium
Created February 29, 2012 15:42
Show Gist options
  • Select an option

  • Save leitmedium/1941810 to your computer and use it in GitHub Desktop.

Select an option

Save leitmedium/1941810 to your computer and use it in GitHub Desktop.

Revisions

  1. damokles created this gist Feb 29, 2012.
    7 changes: 7 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    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();
    }