获取最新推文 - 什么API

时间:2015-11-05 10:12:48

标签: php twitter

我知道这里已经讨论了很多,但我似乎仍然无法找到工作解决方案。要么它已经过时了,那就是错误的编程语言,或者不再受支持。

我想做的就是:使用PHP / JavaScript从公共Twitter个人资料中获取最后的'n'推文。

我应该使用哪种API?
如何保持尽可能轻量级?
我不能使用Node。 JS

我试过这个,但我似乎无法让它工作,就像看起来一样简单。 Simplest PHP example for retrieving user_timeline with Twitter API version 1.1

我已经注册了开发者帐户,并创建了一个“Twitter-App”。

1 个答案:

答案 0 :(得分:7)

您可以使用this API,我曾使用过一次,效果非常好。

从上面的存储库下载文件TwitterApiExchange.php,您可以使用以下示例代码来获取用户的推文:

<?php
echo '<pre>';
require_once('TwitterAPIExchange.php');
/** Set access tokens here - see: https://dev.twitter.com/apps/ **/
$settings = array(
    'oauth_access_token' => "",
    'oauth_access_token_secret' => "",
    'consumer_key' => "",
    'consumer_secret' => ""
);
$url = "https://api.twitter.com/1.1/statuses/user_timeline.json";
$requestMethod = "GET";
$user = "rootcss";
$count = 100;

if (isset($_GET['user'])) { $user = $_GET['user']; }
if (isset($_GET['count'])) { $count = $_GET['count'];}

$getfield = "?screen_name=$user&count=$count";
$twitter = new TwitterAPIExchange($settings);
$string = json_decode($twitter->setGetfield($getfield)->buildOauth($url, $requestMethod)->performRequest(),$assoc = TRUE);

if(isset($string["errors"][0]["message"])) {
    echo "<h3>Sorry, there was a problem.</h3><p>Twitter returned the following error message:</p><p><em>".$string[errors][0]["message"]."</em></p>";
    exit();
}
foreach($string as $items)
    {
        echo "Time and Date of Tweet: ".$items['created_at']."<br />";
        echo "Tweet: ". $items['text']."<br />";
        echo "Tweeted by: ". $items['user']['name']."<br />";
        echo "Screen name: ". $items['user']['screen_name']."<br />";
        echo "Followers: ". $items['user']['followers_count']."<br />";
        echo "Friends: ". $items['user']['friends_count']."<br />";
        echo "Listed: ". $items['user']['listed_count']."<br /><hr />";
    }

echo '</pre>';
?>

它非常适合我,如果您遇到任何问题,请告诉我。