Twitter class by Tijs Verkoyen
Posted
by Tim
on Stack Overflow
See other posts from Stack Overflow
or by Tim
Published on 2010-04-07T11:04:59Z
Indexed on
2010/04/07
11:13 UTC
Read the original article
Hit count: 491
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");
?>
© Stack Overflow or respective owner