Twitter API 版本 1.0 现已停用,使得问题中提供的代码已过时。要使用尽可能少的代码检索 user_timeline(最近状态),请按照以下步骤操作:
接下来,使用以下 PHP 类和代码:
require_once('TwitterAPIExchange.php'); $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' ]; $url = 'https://api.twitter.com/1.1/statuses/user_timeline.json'; $requestMethod = 'GET'; $twitter = new TwitterAPIExchange($settings); echo $twitter->buildOauth($url, $requestMethod)->performRequest();
来自 Twitter API 的响应将显示为最近用户状态的数组。
以上是如何使用最少的 PHP 代码通过 Twitter API v1.1 检索用户的时间线?的详细内容。更多信息请关注PHP中文网其他相关文章!