📌  相关文章
📜  Python – Tweepy 中的 API.list_direct_messages()

📅  最后修改于: 2022-05-13 01:54:30.169000             🧑  作者: Mango

Python – Tweepy 中的 API.list_direct_messages()

Twitter是一个流行的社交网络,用户在其中分享称为推文的消息。 Twitter 允许我们使用 Twitter API 或Tweepy挖掘任何用户的数据。数据将是从用户那里提取的推文。首先要做的是从 Twitter 开发人员那里轻松获得每个用户可用的消费者密钥、消费者秘密、访问密钥和访问秘密。这些密钥将帮助 API 进行身份验证。

API.list_direct_messages()

Tweepy 模块中API类的list_direct_messages()方法用于获取经过身份验证的用户在过去 30 天内的所有直接消息。

示例 1:

# import the module
import tweepy
  
# assign the values accordingly
consumer_key = ""
consumer_secret = ""
access_token = ""
access_token_secret = ""
  
# authorization of consumer key and consumer secret
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
  
# set access to user's access key and access secret 
auth.set_access_token(access_token, access_token_secret)
  
# calling the api 
api = tweepy.API(auth)
  
# fetching the direct messages
direct_messages = api.list_direct_messages()
  
# printing the timestamps
for direct_message in direct_messages:
    print(direct_message.created_timestamp)

输出 :

1591868314610
1591868289514
1591868232626
1591867665376
1591867346546
1591867323014

示例 2:统计过去 30 天内的直接消息数量。

# fetching the direct messages
direct_messages = api.list_direct_messages()
  
print(len(direct_messages))

输出 :

6