【发布时间】:2021-05-20 23:18:56
【问题描述】:
您好,我在 Python 上通过 Tweepy 使用 Twitter API,因为它是一个读取函数,我不明白为什么会收到以下消息:
[{'message': 'Application cannot perform write actions. Contact Twitter Platform Operations through https://help.twitter.com/forms/platform.', 'code': 261}]
当我检查我的开发者门户时,我发现了以下消息:
This App has violated Twitter Rules and policies. As a result, certain functions will be limited. An email has been sent to ******@gmail.com with details. For assistance, submit a support ticket.
这很有趣,因为我只将 API 与我自己的凭据/用户一起用于:
public_tweets = api.user_timeline()
lookup_users = api.lookup_users(user_ids=[user_id])
其他信息: 我为我的应用授予了读取、写入和发布权限
- 如果这是一个读取函数,为什么我不能执行写入操作?
- 有什么方法可以解决我的应用程序的这个问题吗? Twitter 没有回应我的申诉
【问题讨论】: