This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* There is a write-up of how to get this code to run. https://elifk.us/en/retrieving-your-strava-data-with-google-app-scripts/ | |
*/ | |
var CLIENT_ID = '<ClientId for the Strava App>'; | |
var CLIENT_SECRET = '<Client Secret for the Strava App>'; | |
var SPREADSHEET_NAME = "StravaData"; | |
var SPREADSHEET_ID = "<Spreadsheet id for the Google Spreadsheet>"; | |
var SHEET_NAME = "Sheet1"; | |
var DEBUG = false; |