转发上写入时间戳的时区

时间:2018-05-28 18:09:57

标签: python api twitter

我想知道转推的推文何时发布。为此,我学会了如何使用twitter API和tweetpy。这是我第一次使用它们。

我最后使用以下一行感兴趣转发:

        auth = OAuthHandler(consumer_key, consumer_secret)
        auth.set_access_token(access_token, access_token_secret)
        auth_api = API(auth)
        tweetid= # this is the id of the original tweet
        auth_api.retweets(tweetid)[0].created_at 

现在,当我查看输出时,我看到datetime.datetime(2018, 5, 28, 15, 44, 56)这个结果。但是,我看不到这个时间戳所属的时区。我如何知道根据这个时区写的?

1 个答案:

答案 0 :(得分:1)

根据https://developer.twitter.com/en/docs/tweets/data-dictionary/overview/tweet-object created_at是一个字符串属性,其值为“创建此推文时的UTC时间。”