API - 错误 202“您的凭据不允许访问此资源"

API - 错误 202“您的凭据不允许访问此资源

问题描述:

我正在尝试使用 account/verify_credentialsstatuses/update API.我总是收到错误 202,请参阅下面返回的错误:

I am trying to use account/verify_credentials and statuses/update API. I always get an error 202, please see error returned below:

{"errors":[{"code":220,"message":"您的凭据不允许访问到此资源."}]}

{"errors":[{"code":220,"message":"Your credentials do not allow access to this resource."}]}

仔细检查您的代码 - 看起来您正在使用应用程序令牌而不是用户令牌调用 Twitter REST API.

Double check your code - it looks like, that you're calling the Twitter REST API with an application-token, instead of an user-token.

>

看看这里:https://dev.twitter.com/docs/auth/application-only-auth

为了能够成功地为用户创建新状态,您需要一个特定的用户访问令牌.

To be able to successfully creating a new status for an user, you need a specific user-access token.