is there is any way to add location in google calendar event using node js,
In this code i added location . but i doesn't get entered in google, remaing fields are inserted.
var addEventBody = {
'status':'confirmed',
'location':'location',
'summary': summary,
'description': summary,
'organizer': {
'email': googleUserId,
'self': true
},
'start': {
dateTime: startdate,
},
'end': {
dateTime: enddate
},
'attendees': [
{
'email': googleUserId,
'organizer': true,
'self': true,
'responseStatus': 'needsAction'
}
]
};