Reputation: 6820
I have noticed when a user has ran out of API request I am seeing:
{"errors":[{"code":53,"message":"Basic authentication is not supported"}]}
Is there a way in PHP I can output this?
Upvotes: 1
Views: 6576
Reputation: 928
I think you'll find that twitter has turned off basic authentication. You will have to use OAuth from now on.
http://dev.twitter.com/pages/oauth_faq
Upvotes: 6
Reputation: 3948
$myarray = json_decode($error_string, true);
$code = $myarray['errors'][0]['code'];
Upvotes: 2