了解 API 更改
Twitter API 1.0 已更新已退役,其替代品 API 1.1 需要不同的身份验证
Twilio 凭证
要获取 Twitter API 1.1 所需的凭证,请按照以下步骤操作:
简化的 PHP 代码
以下 PHP 类简化了访问 Twitter 的过程API:
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'; $getfield = '?screen_name=username&count=10'; $requestMethod = 'GET'; $twitter = new TwitterAPIExchange($settings); $response = $twitter->setGetfield($getfield) ->buildOauth($url, $requestMethod) ->performRequest(); $tweets = json_decode($response); foreach ($tweets as $tweet) { print_r($tweet); }
以上是如何使用 PHP 和 API v1.1 检索 Twitter 用户时间线数据?的详细内容。更多信息请关注PHP中文网其他相关文章!