Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Twitter API でツイートに使用されるタイムゾーンは何ですか?
Twitter REST API のツイートの created_at フィールドは、UTC のタイムスタンプを提供します。
ユーザーが Twitter でタイムゾーンを構成している場合、utc_offset フィールドはタイムゾーンと UTC の差を秒単位で示します。そう、
"utc_offset":-28800
-28800/3600 = UTC から -8 時間に相当します。
これが夏時間に合わせて調整されないという提案がいくつかあります。
各ツイートのタイムゾーンは、自動的にローカル タイムゾーンに変換されます。UTC が必要な場合は、.ToUniversalTime() メソッドを使用できます。次に例を示します。 myTweet.CreatedDate.ToUniversalTime();
myTweet.CreatedDate.ToUniversalTime();
タイム ゾーンは、配信オプションのユーザー設定にあります。