使用Twitter API 版本1.1 檢索user_timeline 的最簡單PHP 範例
由於Twitter API 1.0 範例
由於Twitter API 1.0 範例
由於Twitter API 1.0 2013 年6 月11 日停用,提供的問題中的腳本不再有效。但是,過渡到 Twitter API 版本 1.1 需要更新方法。
使用 Twitter API 版本 1.1 擷取 user_timeline 的步驟:在 Twitter 上註冊為開發者。
建立應用程式並取得必要的 API 金鑰,包括消費者金鑰、消費者金鑰、存取權權令牌,以及存取權杖金鑰。將應用程式的存取等級設定為讀取和寫入以獲得所需的功能。
3.利用 TwitterAPIExchange PHP 類別:
require_once('TwitterAPIExchange.php'); $settings = [ 'oauth_access_token' => 'YOUR_OAUTH_ACCESS_TOKEN', 'oauth_access_token_secret' => 'YOUR_OAUTH_ACCESS_TOKEN_SECRET', 'consumer_key' => 'YOUR_CONSUMER_KEY', 'consumer_secret' => 'YOUR_CONSUMER_SECRET', ]; $url = 'https://api.twitter.com/1.1/statuses/user_timeline.json'; $requestMethod = 'GET'; $getfield = '?screen_name=YOUR_SCREEN_NAME&count=10';
4.設定API 呼叫:
$twitter = new TwitterAPIExchange($settings); $result = $twitter->setGetfield($getfield) ->buildOauth($url, $requestMethod) ->performRequest(); if ($result) { $tweets = json_decode($result, true); foreach ($tweets as $tweet) { print_r($tweet); } }
以上是如何使用 PHP 和 Twitter API v1.1 檢索 Twitter 用戶時間軸資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!