Exception: The script does not have permission to perform that action. Required permissions

3415 단어 GoogleAppsScripterror

오류



이미지





Details를 클릭하면 표시됨





메시지



Message details
Exception: The script does not have permission to perform that action. Required permissions: ( htps //w w. ㅇㅜㅜㅜㅜ 이 m/아우 th/g 마이 l. 센 d || htps //w w. ㅇㅜㅜㅜㅜ 코 m/아우 th/g 마이 l. 코 m 포세 || htps //w w. ㅇㅜㅜㅜㅜ 이 m/아우 th/g 마이 l. 모피 || htps : // 마이 l. 오, ぇ. 코m/ || htps //w w. ㅇㅜㅜㅜㅜ 코 m/아우 th/g 마이 l. 아돈 s. 쿤 t. 아 c 치오. 코 m 포세 ) "line 12, mail

해결책



appsscript.json 수정



1. 이미 appsscript.json에 "oauthScopes"가 있으면 아무것도하지 않습니다. 없는 경우에, 창조한다.



appsscript.json

{
  ...
  "oauthScopes": []
}

2. 오류 메시지의 () 내부를 잘라냅니다.



이번에는 이것

errorMessage
https://www.googleapis.com/auth/gmail.send || https://www.googleapis.com/auth/gmail.compose || https://www.googleapis.com/auth/gmail.modify || https://mail.google.com/ || https://www.googleapis.com/auth/gmail.addons.current.action.compose

3. 2 읽기



모두, || 로 연결되어 있기 때문에, 어떤 것을 사용하면 좋은 것을 알 수 있다.
이번에는 시험에 https://www.googleapis.com/auth/gmail.send
errorMessage
https://www.googleapis.com/auth/gmail.send || https://www.googleapis.com/auth/gmail.compose || https://www.googleapis.com/auth/gmail.modify || https://mail.google.com/ || https://www.googleapis.com/auth/gmail.addons.current.action.compose

4. 1에서 만든 "oauthScopes"의 []에 추가한다.



appsscrips.json

{
  ...
  "oauthScopes": [
    "https://www.googleapis.com/auth/gmail.send"
  ]
}

메일을 보낼 수 있습니다

좋은 웹페이지 즐겨찾기