I'm using class.twitter.php as my api interface. I JUST started
messing around with the twitter API.

Here's the following code:

<?php
error_reporting(E_ALL);

require_once 'class.twitter.php';

$username = '*****';
$password = '*****';

$twitter = new twitter();
$twitter->username = $username;
$twitter->password = $password;

$res = $twitter->update('http://code.google.com');

echo $res;

?>

I'm really not sure where I'm running amuck. It keeps returning Bad
Request.

Reply via email to