使用https://github.com/abraham/twitteroauth:
function getTwitterFeed($token_array){
require_once('twitteroauth/twitteroauth.php');
$oauth_token = $token_array['access_token'];
$oauth_token_secret = $token_array['access_token_secret'];
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $oauth_token, $oauth_token_secret);
$response = $connection->get("statuses/user_timeline");
//...do stuff with the response
}
我想捕获身份验证问题(无效的令牌或令牌机密)和/或“超出速率限制”的错误或异常。
我在任何地方都找不到有关此库的错误处理的任何信息。我怎样才能做到这一点?