Click here to Skip to main content
15,891,033 members
Articles / Programming Languages / PHP
Tip/Trick

Read Tweets with PHP

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
4 Oct 2011CPOL 15.6K   1  
Tweets are one of the mostly used for status sharing these days. This tip highlights one of the easiest ways to display Tweets in PHP.
While Twitter returns information in several formats (such as RSS, XML), Twitter feeds are returns in RSS XML format, and I am talking about the RSS format here.

If you have looked at the Twitter API, the property statuses/user_timeline returns the 20 most recent statuses posted by the authenticating user. It is also possible to request another user’s timeline by using the screen_name or user_id, and only be visible if they are not protected.

The resource URL must be something like this.

PHP
http://twitter.com/statuses/user_timeline/[screen_name].[format]


Load the relevant page into DOMDocument, and will arrange as the root of the document tree.

$doc    = new DOMDocument();
if($doc->load('http://twitter.com/statuses/user_timeline/[screen_name].rss')) {
    // The retrieving logic goes here
}


Once you loaded the document to DOM object appropriately, you can easily traverse through the XML formatted nodes. Each node you can pick the data as in ordinary XML document, using getElementByTagName().

$html .= "<ul>";

# number of elements to display.  20 is the maximum, I want to display last 5 tweets
$max_tweets = 5;

$i = 1;
foreach ($doc->getElementsByTagName('item') as $node) {
	# fetch the title from the RSS feed. 
	# Note: 'pubDate' and 'link' are also useful
	$tweet 		= $node->getElementsByTagName('title')->item(0)->nodeValue;
	$pubDate	= $node->getElementsByTagName('pubDate')->item(0)->nodeValue;
	$link		= $node->getElementsByTagName('link')->item(0)->nodeValue;

	// Here you can do various formatting to your results. Have a look at the following two lines.

	// OPTIONAL: the title of each tweet starts with "username: " which I want to keep
	//$tweet = substr($tweet, stripos($tweet, ':') + 1);   

	// DateTime conversion
	$pubDate = strtotime($pubDate);
		
	$html .= "<li>";
	$html .= "<a href="\" target="\">";
	$html .= $tweet;
	$html .= "</a>";
	$html .= "<br /><span style="\">".date("l dS F Y G:i A e", $pubDate)."</span>";
	$html .= "</li>";

	if($i++ >= $max_tweets) {
		break;
	}
}
$html .= "</ul>"; 


Points of Interest

When comparing XML and RSS formats, there are some interesting differences:

  • XML does not show the re-tweet in the timeline for a user, while RSS does.
  • Since XML displays all the nodes, it is more descriptive than RSS returns (there is no need to spend time on manipulating).


For an example, let see how you can find number of Tweets already posted by a user.

function GetAllTweetCount($screen_name) {
    $sXML = new SimpleXMLElement('http://api.twitter.com/1/users/show/'.$screen_name.'.xml', NULL, TRUE);
    return number_format($sXML->statuses_count, 0, '', ',');
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Sri Lanka Sri Lanka
I graduated with a BSc honours degree in Computer Science & Engineering from Peradeniya University. Currently work as a Senior Software Engineer in Colombo.

I started my career with programming in Java, which I happen to master at later stages of my career. Then later stages I move with Microsoft technologies like C/C++, .Net, SQL Servers and Web 2.0 technologies. Currently re-learning PHP.

Now I'm spending my time with reading for my masters in Artificial Intelligence.

Comments and Discussions

 
-- There are no messages in this forum --