Twitter class by Tijs Verkoyen
- by Tim
I am trying to use this class http://classes.verkoyen.eu/twitter/ to update status on twitter, but I am getting this error:
/statuses/update.xml Could not authenticate you.
My code is just the following, I am using the latest version of the class (1.0.5)
<?php
include "twitter.php";
$twit = new Twitter("username","password");
$twit->updateStatus("Testing");
?>