この記事では、Google Apps Script(GAS)で頻発するエラーを
日本語記事/英語記事に分けて一覧化しています。
・日本語で原因と対処を知りたい方 → 日本語一覧
・英語で公式・海外情報を探したい方 → English Articles
目的に応じてご活用ください。
日本語の記事一覧
Google Apps Scriptが開けない原因が「リダイレクト」だった話
GASのコードを編集しようとしただけなのに、以下のような画面になってしまいました。 このページは動作していません script.google…
Google Apps Scriptで「ERR_TOO_MANY_REDIRECTS」が出たときの話
操作: ブラウザのブックマークからGASのプロジェクトを開こうとした タイミング: 久しぶりにアクセスしたとき エラー内容: ERR_TOO…
Google Apps Script が開かない原因は「Chromeのアカウント違い」です|GAS 開かない アカウント 400
前提として、Google Apps Script は script.google.com という Web サービスです。ここにアクセスしたと…
GAS Rhino廃止・V8移行完全ガイド:3つの記事で完璧に理解する
「Rhino非推奨」の警告が出たけれど、具体的に何がどうなるのか? まずはその背景とスケジュールを正しく理解しましょう。 👉 【超丁寧解説】…
GASエラー:「Exception: Service error: Drive」とは何が起きている状態か
このエラーは、Google Drive 関連のサービス(DriveApp / SpreadsheetApp など)を使った処理が、Googl…
【技術解説】GAS「Exceeded maximum execution time」の発生原理とバッチ処理テンプレート
このエラーの直接的な原因は、Google 側のクォータ(制限)による強制終了です。 ※ onEdit などのシンプルトリガーは 30秒 で死…
The script does not have permission to perform that action が出る原因と対処法【GAS】
The script does not have permission to perform that action は、 特定の Goog…
Authorization is required to perform that action が出る原因と対処法【GAS / API】
Authorization is required to perform that action は、 API Googleサービス(Dri…
Error: Invalid JSON string が出る原因と対処法【GAS / JavaScript】
Invalid JSON string は、多くの場合 JSON.parse() 実行時に発生します。 JSON.parse(someStr…
Exception: Invalid argument が起きるGASコードと対処法
このエラーは直訳すると「無効な引数が渡された」 という意味です。 つまり、 関数自体は存在しているが、その関数が期待していない値・型・形式を…
English Articles
Complete Guide to GAS Rhino Deprecation & V8 Migration
You saw the "Rhino Deprecation" warning, but what exactly wi…
How to Fix “Exceeded maximum execution time” in Google Apps Script: A Real-World Guide
In a production environment, this error often appears in time-driven t…
Exception: Service error: Drive in Google Apps Script — Causes, Patterns, and Practical Fixes
This error indicates that a Google Apps Script execution failed intern…
Technical Guide: Fixing GAS “Exceeded maximum execution time” with Batch Processing Patterns
The direct cause of this error is a forced termination due to Google&#…
How to Fix ‘The script does not have permission to perform that action’ in GAS
The script does not have permission to perform that action occurs the …
How to Fix ‘Authorization is required to perform that action’ in GAS / API
Authorization is required to perform that action is returned when you …
How to Fix ‘Error: Invalid JSON string’ in GAS / JavaScript
Invalid JSON string often occurs when executing JSON.parse(). JSON.par…
Exception: Cannot convert ‘xxx’ to Object – Causes and Fixes [GAS / JavaScript]
In short, this error means: You are trying to treat a value as an Obje…
Exception: Invalid argument in Google Apps Script – Causes and Fixes
This error literally means: An argument passed to a function is invali…
RangeError: Maximum call stack size exceeded in Google Apps Script – Causes and Fixes
This error occurs when function calls are nested too deeply, exceeding…
※ 日本語記事では、実際のエラー画面・コード例をもとに、
原因と対処をできるだけ具体的に解説しています。
この一覧にないエラーや、
状況が少し違うケースでお困りの場合は、
以下の点を添えてコメントください。
・発生したエラー全文
・実行していた処理内容
・使用しているサービス(Spreadsheet / Gmail / Drive など)