使用Twitter API 版本1.1 檢索User_Timeline 的最簡單PHP 範例
由於Twitter API 1.0 於2013 年6 月11 日停用,提到的原始腳本不再起作用。本指南提供了一種以最少的編碼工作檢索最近使用者狀態的更新方法。
先決條件:
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 檢索使用者的 Twitter 時間軸?的詳細內容。更多資訊請關注PHP中文網其他相關文章!