Python – Tweepy 中的 API.destroy_status()
Twitter是一个流行的社交网络,用户在其中分享称为推文的消息。 Twitter 允许我们使用 Twitter API 或Tweepy挖掘任何用户的数据。数据将是从用户那里提取的推文。首先要做的是从 twitter 开发人员那里轻松获得每个用户可用的消费者密钥、消费者密钥、访问密钥和访问密钥。这些密钥将帮助 API 进行身份验证。
销毁状态()
Tweepy模块中API
类的API.destroy_status()
方法用于删除授权用户的状态/推文。
Syntax : API.destroy_status(id)
Parameters :
- id : The id of the status.
Returns : an object of the class Status
示例 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)
# the ID of the status
ID =
# deleting the status
api.destroy_status(ID)
# verifying if the status has
# been deleted or not
try:
api.get_status(ID)
except:
print("The status has been successfully deleted.")
输出 :
The status has been successfully deleted.
示例 2:如果我们尝试删除其他人的状态,则会引发异常。尝试删除以下状态:
# the ID of the status
ID = 1263493041769394178
# deleting the status
api.destroy_status(ID)
输出 :
raise TweepError(error_msg, resp, api_code=api_error_code)
tweepy.error.TweepError: [{'code': 183, 'message': "You may not delete another user's status."}]
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。