Google Calendar API을 사용하여 이벤트의 모든 참석자를 GET https://www.googleapis.com/calendar/v3/calendars/calendarId/events/eventId
과 함께받을 수 있습니다.Google 캘린더 API에서 앨리어싱 된 이메일을받는 방법
내 캘린더 이벤트에서 전체 팀 조직에 이메일을 보내는 별칭 [email protected]
을 사용합니다. 불행하게도, 내 캘린더 이벤트는 다음과 같이 별칭이 아닌 개별 이메일을 반환
"attendees": [
{
"email": "[email protected]",
"self": true,
"responseStatus": "accepted"
},
{
"email": "[email protected]", <-- Not what I want
"displayName": "My Entire Company",
"responseStatus": "needsAction"
},
],
이 같은 참석자의 확장 된 목록을 얻는 방법 :
"attendees": [
{
"email": "[email protected]",
"self": true,
"responseStatus": "accepted"
},
{
"email": "[email protected]", <-- expanded email list
"responseStatus": "needsAction"
},
{
"email": "[email protected]",
"responseStatus": "needsAction"
},
{
"email": "[email protected]",
"responseStatus": "needsAction"
},
... etc
],