My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Featured
Downloads
Links

---

This project has moved to GitHub - http://github.com/rogeriopvl/TwitterPHP

---

What is TwitterPHP?

TwitterPHP is a complete and very easy to use Object-Oriented PHP library for the Twitter API. This is opensource software under the Gnu GPL v3 license. So feel free to share it, improve it and distribute. There are many things you can do with this library, including creating your own twitter client or bot.

If you use TwitterPHP in your project please let me know so I can place your link here.

How to Use (example):

require_once('TwitterPHP.class.php');

$twitter = new TwitterPHP("username", "password");

$twitter->sendUpdate("I'm posting this using TwitterPHP!");
$twitter->addUser("rogeriopvl");

If you wish to see some more usage examples, please check the wiki and/or http://rogeriopvl.com/twitterphp/doc for online class documentation.

To download the last unstable release please use the subversion repository:

svn checkout http://twitterphp.googlecode.com/svn/trunk/ twitterphp-read-only

Version log:

Version: 0.9 14-07-2009 - corrected an error left mistakenly from the 0.2 version

Version: 0.5 22-05-2009 - code optimization, removed config.inc.php (user and pass are now passed to class constructor)

Version: 0.2 25-02-2009 - added constructor with curl existence check, and check for http errors

Version: 0.1 23-02-2009 - first commit

Powered by Google Project Hosting