私は非常にスクリプトに慣れていないので、Googleスプレッドシートで非常に簡単なスクリプトを使って1〜私はそれを引き起こす時間。Googleスプレッドシート、スクリプト実行時にエラーが発生する(チュートリアルのものも含む)
問題は関係なく、私が実際に実行するスクリプトボックスに入れて何をされていない、それは常に思い付く:
このスクリプトのOAuthのIDが削除または無効にされています。これは、利用規約に違反している可能性があります。私はこの問題を考え出し、いくつかのグーグル後
は、スクリプトの認証を行うことでしたが、私は次のチュートリアルスクリプトを実行する場合でも、私は同じエラーを取得:
function createAndSendDocument() {
// Create a new Google Doc named 'Hello, world!'
var doc = DocumentApp.create('Hello, world!');
// Access the body of the document, then add a paragraph.
doc.getBody().appendParagraph('This document was created by Google Apps Script.');
// Get the URL of the document.
var url = doc.getUrl();
// Get the email address of the active user - that's you.
var email = Session.getActiveUser().getEmail();
// Get the name of the document to use as an email subject line.
var subject = doc.getName();
// Append a new string to the "url" variable to use as an email body.
var body = 'Link to your doc: ' + url;
// Send yourself an email with a link to the document.
GmailApp.sendEmail(email, subject, body);
}
そのグーグルのバグ。 –
こんにちはZig!あなたはそれを回避する方法を知っていますか?あるいは、すべての編集を再計算しない乱数を生成する関数を作成する方法を知っていますか?ありがとう! – Yuyuimg
https://issuetracker.google.com/issues/62644464 –