LoginSignup
0
2

More than 1 year has passed since last update.

GASの権限エラー(UrlFetchApp.fetch など)

Posted at

GASの開発の中で引っかかってしまった、権限系のエラーのについてまとめました。
基本的にはappscript.jsonに決められた文字列を追加するだけです。

appscript.jsonの表示

まずは非表示になっているappscript.jsonを表示させます。
スクリプトエディタの設定にてチェックを入れます。
script.google.com_home_projects_1GrBZtq5-qsA56ytK8mU1CdhQ1Iiw8HTQlv5tSHrV0AXHnzAUAzi_yfbT_executions (1).png

UrlFetchApp.fetch

SlackのAPIなどを使用する際に、UrlFetchApp.fetchを使うと下記のようなエラーが発生します。
script.google.com_home_projects_1GrBZtq5-qsA56ytK8mU1CdhQ1Iiw8HTQlv5tSHrV0AXHnzAUAzi_yfbT_executions.png

先ほどのjsonに以下を追記します。

"oauthScopes" : [https://www.googleapis.com/auth/script.external_request]

script.google.com_home_projects_1GrBZtq5-qsA56ytK8mU1CdhQ1Iiw8HTQlv5tSHrV0AXHnzAUAzi_yfbT_executions (4).png

SpreadsheetApp.openById

IDを使用してスプレッドシートを取得しようとした際に出たエラーです。
script.google.com_home_projects_1GrBZtq5-qsA56ytK8mU1CdhQ1Iiw8HTQlv5tSHrV0AXHnzAUAzi_yfbT_executions (5).png

同じように下記を追加します。

"oauthScopes" : [https://www.googleapis.com/auth/script.external_request]

script.google.com_home_projects_1GrBZtq5-qsA56ytK8mU1CdhQ1Iiw8HTQlv5tSHrV0AXHnzAUAzi_yfbT_edit.png

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2