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
}
認証の問題 (無効なトークンまたはトークン シークレット) および/または「レート制限を超えた」というエラーまたは例外をキャッチしたいと考えています。
このライブラリのエラー処理に関する情報はどこにもありません。どうすればこれを達成できますか?