var response = UrlFetchApp.fetch('https://api.zoom.us/v2/users/' + userId + '/meetings', options);
UrlFetchApp.fetchを使用
zoomのapiを使って、meetingを作成しようとしていたら以下のエラーが!
Exception: You do not have permission to call UrlFetchApp.fetch. Required permissions: https://www.googleapis.com/auth/script.external_request
解決策:
manifestファイルのappsscript.jsonを編集して、
oauthScopesのところに、エラーで出ていたhttps://www.googleapis.com/auth/script.external_request
を追加してあげる。
その後、実行すればmanifestを変更したために、再度googleの許可を求められるので許可してあげると良い。
参考:
https://stackoverflow.com/questions/58359417/you-do-not-have-permission-to-call-urlfetchapp-fetch