我希望通过 PHP 获取单个用户的推文。目前我正在使用 RSS 对象
$string = 'http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=' . $screenname . '&count=' . $tweetCount;
但是,我想为 API 更改为仅身份验证做准备。我该如何进行此更改,以便当 API 切换时一切仍然有效?
尝试使用这些库:https ://dev.twitter.com/docs/twitter-libraries#php
其中之一具有oauth支持。