사용전 https://apps.twitter.com/ 이곳에서 application 생성 후 CONSUMER_KEY와 CONSUMER_SECRET 값을 사용할 수 있다..
다운로드 : https://github.com/abraham/twitteroauth/releases
버전 : PHP 5.4 이상
설치방법 : https://twitteroauth.com/
※ 압축해제 후 전체 업로드 후 간단하게 아래와 같이 코딩하면 바로 사용가능..
1 2 3 4 5 6 7 8 9 | <?php require "twitteroauth/autoload.php" ; use Abraham\TwitterOAuth\TwitterOAuth; $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $access_token , $access_token_secret ); $content = $connection ->get( "account/verify_credentials" ); ?> |
$access_token 과 $access_token_secret 를 생략하면 app auth으로 허용된다.
※콜제한 : https://dev.twitter.com/rest/public/rate-limits
추가
//x_rate_limit_remaining(15분동안 요청가능한 횟수)등 헤더값을 배열로 리턴
print_r($connection->getLastXHeaders());
//HTTP코드를 리턴해준다(정상:200)
print_r($connection->getLastHttpCode());