我有一个文件,它使用 REST API 1.0 使用 user_timeline.json 根据用户的@handle 抓取 twitter 搜索结果:
$json = file_get_contents("https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&screen_name=handle&count=25", TRUE);
$twitter_feed = json_decode($json, true);
foreach($twitter_feed as $tweet) {do something with $tweet}
由于 REST API v1 不再活动,我需要使用 V1.1 复制该过程。
我已阅读文档并了解我现在需要在运行此脚本之前进行身份验证。作为初学者,这个简单的脚本真的很吓人。
一旦通过身份验证,从某个用户返回推文数组的最佳方法是什么,它将模仿上述内容并返回一个不错的 json 数组?
谢谢