public
Description: An object-oriented PHP interface to the Twitter API
Home | Edit | New

Example

twitterlibphp was designed to be as simple to use as possible. Here is a simple way to return the XML from your profile:

<?php
// require the twitter library
require "twitter.lib.php";

// your twitter username and password
$username = "username";
$password = "password";

// initialize the twitter class
$twitter = new Twitter($username, $password);

// fetch your profile in xml format
$xml = $twitter->showUser();

// display the raw xml
echo "<pre>";
echo htmlentities($xml);
echo "

“;
?>

Now the $xml variable contains the XML data of your Twitter profile, and you can use it for whatever you need to.

Last edited by jdp, Tue Mar 24 17:35:16 -0700 2009
Home | Edit | New
Versions: