gpt4 book ai didi

python - 如何修复 suggested_users() 中的 Tweepy 错误 'Sorry, that page does not exist.'

转载 作者:太空宇宙 更新时间:2023-11-04 02:00:39 24 4
gpt4 key购买 nike

我正在使用 tweepy==3.6.0 和 Python 3.6

auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(access_token,
access_token_secret)
api = tweepy.API(auth)

# categories = api.suggested_categories()
users = api.suggested_users(slug='science')

suggested_users() 引发此错误:

raise TweepError(error_msg, resp, api_code=api_error_code) tweepy.error.TweepError: [{'code': 34, 'message': 'Sorry, that page does not exist.'}]

最佳答案

基于Twitter API reference , GET users/suggestions/:slug 用于:

Access the users in a given category of the Twitter suggested user list.

因此,在使用 api.suggested_users() 时,您不能指定任意类别,例如“科学”。您需要从建议的类别之一中获取类别 slug,您可以使用 api.suggested_categories() 检索它。

这是一个工作示例,列出了第一个建议类别的用户(使用 categories[0].slug):

categories = api.suggested_categories(lang='en')
# print names and slugs of suggested categories
for cat in categories:
print(cat.name,' - ',cat.slug)

users = api.suggested_users(slug=categories[0].slug, lang='en')
# print id and screen names of suggested users
for user in users:
print(user.id, ' - ', user.screen_name)

关于python - 如何修复 suggested_users() 中的 Tweepy 错误 'Sorry, that page does not exist.',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55781495/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com