$twitteroauth = new TwitterOAuth(YOUR_CONSUMER_KEY, YOUR_CONSUMER_SECRET, 'User_Token Access', 'user_token secret');
$twitteroauth->post('statuses/update', array('status' => 'Hello Nettuts+'));
When I try to use this code, I am getting error
Could not authenticate you
And my Status was also not updated. Why is it so?