使用 Twitter API 版本 1.1 检索用户时间线的简单 PHP 示例
简介:
Twitter API 1.0 已停用,导致提供的脚本无效。本文提供了一个更新的解决方案和一个 PHP 类,用于使用最少的代码检索用户时间线。
先决条件:
解决方案:
下面是与 OAuth 和 Twitter v1.1 集成的简化 PHP 代码API:
require_once('TwitterAPIExchange.php'); // Set access tokens $settings = array( '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' ); // Set request URL $url = 'https://api.twitter.com/1.1/statuses/user_timeline.json?count=10'; $requestMethod = 'GET'; // Instantiate Twitter API Exchange $twitter = new TwitterAPIExchange($settings); // Perform the request $output = $twitter->buildOauth($url, $requestMethod)->performRequest(); // Decode and print tweets $tweets = json_decode($output, true); foreach ($tweets as $tweet) { print_r($tweet); }
实现:
以上是如何使用 PHP 和 v1.1 API 检索用户的 Twitter 时间线?的详细内容。更多信息请关注PHP中文网其他相关文章!