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. 오류 메시지의 () 내부를 잘라냅니다.
이번에는 이것
errorMessagehttps://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
errorMessagehttps://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"
]
}
메일을 보낼 수 있습니다
Reference
이 문제에 관하여(Exception: The script does not have permission to perform that action. Required permissions), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/kajirikajiri/items/84b9a9fee61cbc3bf124
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
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"
]
}
메일을 보낼 수 있습니다
Reference
이 문제에 관하여(Exception: The script does not have permission to perform that action. Required permissions), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kajirikajiri/items/84b9a9fee61cbc3bf124텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)