使用 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中文网其他相关文章!