這個外掛程式能在 Apps Script 專案中執行函式。指令碼專案必須部署以供 Apps Script API 使用,且呼叫應用程式必須共用同一個 Cloud Platform 專案。
此方法需要用 OAuth 2.0 憑證進行授權,且其中至少要包含「授權」一節所列的一個範圍;不需要授權的指令碼專案無法透過這個 API 執行。如要找到要納入驗證權杖的正確範圍,請開啟指令碼專案的「總覽」頁面,然後向下捲動至「專案 OAuth 範圍」。
錯誤 403, PERMISSION_DENIED: The caller does not have permission
表示用於授權要求的 Cloud Platform 專案與指令碼所使用的專案不同。
HTTP 要求
POST https://script.googleapis.com/v1/scripts/{scriptId}:run
這個網址使用 gRPC 轉碼語法。
路徑參數
參數 | |
---|---|
scriptId |
要執行的指令碼的指令碼 ID。在「專案設定」頁面的「ID」下方,找出指令碼 ID。 |
要求主體
要求主體的資料會採用以下結構:
JSON 表示法 |
---|
{ "function": string, "parameters": [ value ], "sessionState": string, "devMode": boolean } |
欄位 | |
---|---|
function |
指定指令碼中要執行的函式名稱。名稱不含括號或參數。並參照內含程式庫 (例如 |
parameters[] |
要傳遞至執行中函式的參數。每個參數的物件類型都必須符合 Apps Script 中的預期類型。參數不得為 Apps Script 專屬的物件類型 (例如 |
sessionState |
已淘汰,僅適用於 Android 外掛程式。在 Google 文件或試算表 Android 應用程式中代表使用者目前工作階段的 ID。系統會在啟動外掛程式的 Intent 中以額外資料的形式提供 ID。Android 外掛程式在工作階段狀態中執行時,即可取得「繫結」指令碼的權限,也就是存取使用者目前遊標位置 (在 Google 文件中) 或所選儲存格 (在試算表中) 的資訊。如要擷取狀態,請呼叫 |
devMode |
如果 |
回應主體
如果成功,回應主體會含有以下結構的資料:
表示開頭為 run
的 Apps Script 函式執行作業。直到函式完成執行之後,才會收到執行回應。請參閱 Apps Script 配額指南列出的執行時間上限。
執行作業開始後,可能會有下列四種結果:
- 如果指令碼函式成功傳回,則
response
欄位會包含ExecutionResponse
物件,且該物件的result
欄位含有函式的傳回值。 - 如果指令碼函式 (或 Apps Script 本身) 擲回例外狀況,
error
欄位會包含Status
物件。Status
物件的details
欄位包含一個含有單一ExecutionError
物件的陣列,可提供錯誤性質的相關資訊。 - 如果執行尚未完成,
done
欄位會是false
,但response
和error
欄位都不會顯示。 - 如果
run
呼叫本身失敗 (例如要求格式錯誤或授權錯誤),這個方法會傳回 4XX 範圍內的 HTTP 回應代碼,回應主體的格式也不同。用戶端程式庫會自動將 4XX 回應轉換為例外狀況類別。
JSON 表示法 |
---|
{ "done": boolean, // Union field |
欄位 | |
---|---|
done |
這個欄位會指出指令碼是否已執行完畢。執行作業完成時,系統會填入 |
聯集欄位 result 。這是作業的執行結果,可能為 error ,或是有效的 response 。如果 done == false ,系統不會將結果設定為 error ,也不會設定為 response 。如果 done == true ,則應該設為 error 或 response 其中之一。部分服務可能不會提供結果。result 只能是下列其中一個設定: |
|
error |
如果 |
response |
如果指令碼函式成功傳回,則這個欄位會包含含有函式回傳值的 含有任意類型欄位的物件。額外的 |
授權範圍
需要下列其中一種 OAuth 範圍:
https://apps-apis.google.com/a/feeds
https://apps-apis.google.com/a/feeds/alias/
https://apps-apis.google.com/a/feeds/groups/
https://mail.google.com/
https://sites.google.com/feeds
https://www.google.com/calendar/feeds
https://www.google.com/m8/feeds
https://www.googleapis.com/auth/admin.directory.group
https://www.googleapis.com/auth/admin.directory.user
https://www.googleapis.com/auth/documents
https://www.googleapis.com/auth/documents.currentonly
https://www.googleapis.com/auth/drive
https://www.googleapis.com/auth/dynamiccreatives
https://www.googleapis.com/auth/forms
https://www.googleapis.com/auth/forms.currentonly
https://www.googleapis.com/auth/groups
https://www.googleapis.com/auth/script.cpanel
https://www.googleapis.com/auth/script.external_request
https://www.googleapis.com/auth/script.scriptapp
https://www.googleapis.com/auth/script.send_mail
https://www.googleapis.com/auth/script.storage
https://www.googleapis.com/auth/script.webapp.deploy
https://www.googleapis.com/auth/spreadsheets
https://www.googleapis.com/auth/spreadsheets.currentonly
https://www.googleapis.com/auth/sqlservice
https://www.googleapis.com/auth/userinfo.email
詳情請參閱 OAuth 2.0 總覽。
狀態
如果 run
呼叫成功,但指令碼函式 (或 Apps Script 本身) 擲回例外狀況,則回應主體的 error
欄位會包含這個 Status
物件。
JSON 表示法 |
---|
{ "code": integer, "message": string, "details": [ { "@type": string, field1: ..., ... } ] } |
欄位 | |
---|---|
code |
狀態碼。針對這個 API,這個值可能為:
|
message |
向開發人員顯示的錯誤訊息,內容為英文。向使用者顯示的所有錯誤訊息都會經過本地化並透過 |
details[] |
包含單一 含有任意類型欄位的物件。額外的 |