2017-10-22 13 views
0

Googleスクリプトを実行するたびに、このメッセージが表示されます。テストリストファイルにGoogleのデータにアクセスするための許可が必要

- テストリストファイルには、Googleのデータにアクセスするための許可が必要です。

私はサードパーティのアプリケーションから削除しましたが、それでもポップアップを続けます。私はすべての拒否された電子メールを集めるためにスクリプトを実行しようとしていました。以下はスクリプトです。何かがどこかに埋め込まれていて、私はどこにいるのか分からない。

function getBouncedEmails() { 

    /* Written by Amit Agarwal */ 
    /* Email: [email protected] */ 

    // Write the bounced email report to a Google SpreadsheetApp 
    /var sheet = SpreadsheetApp.getActiveSheet(); 
    sheet.getRange(2, 1, sheet.getLastRow(), sheet.getLastColumn()).clearContent(); 

    // Find all emails returned via Gmail Mailer Maemon 
    var query = "from:([email protected] OR [email protected])"; 

    // Get the most recent 1000 bounced email messages in Gmail 
    GmailApp.search(query, 0, 1000).forEach(function(thread) { 
     thread.getMessages().forEach(function(message) { 
      if (message.getFrom().indexOf("mailer-daemon") !== -1) { 
       var body = message.getPlainBody(); 
       Get the bounced email address from the body 
       var matches = body.match(/Delivery to[\s\S]+?(\S+\@\S+)\s([\s\S]+?)----- Original Message/); 

      } 
     }); 
    }); 
} 

答えて

0

Googleスクリプトのデータへのアクセスを防止する方法は次のとおりです。 https://security.google.com/settings/security/permissions

    1. ゴーあなたが

    2. 次[削除]をクリックし、設定が完了しているをアンインストールするスクリプトをクリックしてください。

  • 関連する問題