I\'m building my first system using Twitters OAuth and have some issues.
First, I\'m using Abraham\'s Twitter-class for this and I have followed this tutorial. However,
I was having the same error, caused by a simple mistake:
Doesn’t work: $this->twitteroauth->post('statuses/update’, $message);
$this->twitteroauth->post('statuses/update’, $message);
Works: $this->twitteroauth->post('statuses/update', array("status" => $message));
$this->twitteroauth->post('statuses/update', array("status" => $message));