1

私はWrike(https://imgur.com/a/9h1ij)のようなGmailのコンテンツ(本文)を取得しようとしていますが、上記のエラーが発生しています。gmail addonのメールコンテンツを取得する

「アクセスが拒否されました::メールメッセージへのフルアクセスは許可されていない」

Logger.log(mail.getPlainBody()); 
+0

を[MCVE]を追加してください。 –

答えて

1

あなたのコードを見ることなく、あなたが正しいファイルあなた
「appsscript.json」に含める必要があると私には思えます範囲。

// This scope allows you to: 'View your email messages and settings' 
"oauthScopes": ["https://www.googleapis.com/auth/gmail.readonly"] 

// This scope gives you full access to your Gmail - 'Read, send, delete, and manage your email' 
"oauthScopes": ["https://mail.google.com/"] 

ここスコープのマニュアルを参照してください。https://developers.google.com/identity/protocols/googlescopes#gmailv1

関連する問題