Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

API - Error 202 "Your credentials do not allow access to this resource"

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":"Your credentials do not allow access to this resource."}]}

like image 502
ronalyn.alcanar Avatar asked Apr 21 '14 10:04

ronalyn.alcanar


1 Answers

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

Have a look here: 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.

like image 81
Johannes N. Avatar answered Sep 28 '22 20:09

Johannes N.