Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Twitters Search API to display tweets for content research.

I have gotten the tweet content to display along with the username and picture.

Here is my code:

$search_query = $_GET['search'];

$finished_query = str_replace(" ", "%20", $search_query);

$url = "http://search.twitter.com/search.json?q=".$finished_query."&rpp=5&include_entities=true&result_type=mixed";

$jsonfile = file_get_contents($url);

$obj = json_decode($jsonfile);


foreach($obj->results as $result) {
    echo "<div class='tweet'>";

    echo "<div class='authorpic'>
        <img src='".$result->profile_image_url."' />
    </div>";

    echo "<div class='content'>";
        echo "<b>".$result->from_user_name."</b> (<a href='http://www.twitter.com/".$result->from_user."'>".$result->from_user."</a>)";
        echo "<br />";
        echo $result->text;
        echo "<br />";
        echo "<a href='http://www.twitter.com/".$result->from_user."/status/".$result->id_str."'>View on twitter</a>";
        echo " <b>Retweets:</b> ".$result->metadata->recent_retweets."";
     echo "</div>";
    echo "</div>";
}

Here is a tweet which I got 4 people to re-tweet: http://codedbyblake.com/content-research-tool/twitter.php?search=437290847398hr2hjo

Anyone have any idea why the re-tweets is showing as 0?

Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.