1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

GASのタイムゾーンがデフォルトでニューヨークになっていた

Posted at

2021年2月現在で、新しくスプレッドシートを作ります。

スプレッドシートの設定

「ファイル」メニュー → 「Googleスプレッドシートの設定」を選択します。

スプレッドシート自体のタイムゾーンは東京になっています。

GASエディタの設定

「ツール」メニュー → 「スクリプトエディタ」を開きます。

プロジェクトの設定を開いて、「「appsscript.json」マニフェスト ファイルをエディタで表示する」にチェックを入れます。

エディタで「appsscript.json」が開けるので開きます。

ここのタイムゾーンがニューヨークになっています。

"timeZone": "America/New_York",

GASを実行してみる

Dateを生成してログに出力してみると、ニューヨーク時間になっています。

function myFunction() {
  var date = new Date();
  Logger.log(date);
}

image.png

トリガーを設定して実行してみます。
以下のようにトリガーを設定しました。

実行される時間は日本時間でした。
トリガーの設定には問題ないようです。

image.png
ということで、「appsscript.json」のタイムゾーンを修正します。

"timeZone": "Asia/Tokyo",

以下のように日本時間で出力されました。
image.png

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?