var path = | |
"https://www.googleapis.com/calendar/v3/calendars/" + encodeURIComponent(id) + "/events" + | |
"?timeMin=" + this.isoStart + | |
"&timeMax=" + this.isoEnd + | |
"&key=" + this.api_key + | |
"&singleEvents=true" | |
; |
var path = | |
"https://www.googleapis.com/calendar/v3/calendars/" + encodeURIComponent(id) + "/events" + | |
"?timeMin=" + this.isoStart + | |
"&timeMax=" + this.isoEnd + "&singleEvents=true" + | |
"&key=" + this.api_key | |
; |