Python – Tweepy 中的 API.destroy_favorite()
Twitter是一个流行的社交网络,用户在其中分享称为推文的消息。 Twitter 允许我们使用 Twitter API 或Tweepy挖掘任何用户的数据。数据将是从用户那里提取的推文。首先要做的是从 twitter 开发人员那里轻松获得每个用户可用的消费者密钥、消费者密钥、访问密钥和访问密钥。这些密钥将帮助 API 进行身份验证。
API.destroy_favorite()
Tweepy 模块中API
类的destroy_favorite()
方法用于取消喜欢身份验证用户的身份。
Syntax : API.destroy_favorite(id)
Parameters :
- id : specifies the ID of the status.
Returns : an object of 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)
# ID of the status
id = 1268080321590935553
# un-liking the status
api.destroy_favorite(id)
输出 :
示例 2:通过destroy_favorite()
方法检查状态是否为不喜欢。
# ID of the status
id = 1267740427676942337
print("Before using the destroy_favorite() method : ")
if api.get_status(id).favorited == True:
print("The status has been liked by the authenticated user.")
else:
print("The status has not been liked by the authenticated user.")
# un-liking the status
api.destroy_favorite(id)
print("\nAfter using the destroy_favorite() method : ")
if api.get_status(id).favorited == True:
print("The status has been liked by the authenticated user.")
else:
print("The status has not been liked by the authenticated user.")
输出 :
Before using the destroy_favorite() method :
The status has been liked by the authenticated user.
After using the destroy_favorite() method :
The status has not been liked by the authenticated user.
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。