Twitter API 버전 1.1을 사용하여 User_Timeline을 검색하는 가장 간단한 PHP 예제
2013년 6월 11일 Twitter API 1.0이 종료됨에 따라 언급된 원본 스크립트는 더 이상 작동하지 않습니다. 이 가이드는 최소한의 코딩 노력으로 최근 사용자 상태를 검색하는 업데이트된 접근 방식을 제공합니다.
전제 조건:
PHP 코드
작업을 단순화하기 위해 PHP 클래스는 다음과 같습니다. 제공됨:
require_once('TwitterAPIExchange.php'); // Replace these values with your application's tokens $settings = [ 'oauth_access_token' => 'YOUR_ACCESS_TOKEN', 'oauth_access_token_secret' => 'YOUR_ACCESS_TOKEN_SECRET', 'consumer_key' => 'YOUR_CONSUMER_KEY', 'consumer_secret' => 'YOUR_CONSUMER_SECRET' ]; // Define the API endpoint and request method $url = 'https://api.twitter.com/1.1/statuses/user_timeline.json'; $requestMethod = 'GET'; // Create the TwitterAPIExchange instance $twitter = new TwitterAPIExchange($settings); // Build the request and perform it echo $twitter->buildOauth($url, $requestMethod)->performRequest();
사용:
위 내용은 PHP 및 API v1.1을 사용하여 사용자의 트위터 타임라인을 검색하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!