Google Apps Script: 解決「無法使用 Google 登入功能」因權限問題導致無法執行 Script 的問題


問題描述:
執行 Google Apps Script 時, 遇到如下權限的問題:





出現錯誤訊息:
系統已暫時停用這個應用程式的「使用 Google 帳戶登入」功能。

這個應用程式尚未經過 Google 驗證,因此無法使用 Google 登入功能。
解決方法:
在 Script 裡加入下列幾行 comment:

/**
 * @OnlyCurrentDoc
 */
結果:
可讓 Script 順利取得授權。

參考資料:

Authorization for Google Services