I am getting Bad Authentication data as error message with code = 215
when i followed the below link
https://dev.twitter.com/docs/auth/oauth/single-user-with-examples#php
This is the code that was given in that link
function getConnectionWithAccessToken($oauth_token, $oauth_token_secret) {
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $oauth_token, $oauth_token_secret);
return $connection;
}
$connection = getConnectionWithAccessToken(“abcdefg”, “hijklmnop”);
$content = $connection->get(“statuses/home_timeline”);
please help me
Thanks in advance