index.html?_ijt=4qfd7dup21pgh71ckq7ivuefns:21 POST https://content.googleapis.com/calendar/v3/freeBusy?alt=json&key=AIzaSyCDQ6E4W_u5fB-q4FsVVNmOstYdi6lntE0 400 code example
Example: how to manke a query in google api freebusy python
the_datetime = tz.localize(datetime.datetime(2016, 1, 3, 0))
the_datetime2 = tz.localize(datetime.datetime(2016, 1, 4, 8))
body = {
"timeMin": the_datetime.isoformat(),
"timeMax": the_datetime2.isoformat(),
"timeZone": 'US/Central',
"items": [{"id": '[email protected]'}]
}
eventsResult = service.freebusy().query(body=body).execute()