I am attempting to automatically login to twitter using the OAUTH and php. I have successfully created the connection and can login / tweet successfully using the following code:
$connection = new TwitterOAuth(
'consumer_key',
'consumer_secret',
'oauth_token',
'oauth_token_secret'
);
$credentials = $connection->get('account/verify_credentials');
echo "Connected as @" . $credentials->screen_name;
$connection->post('statuses/update', array('status' => 'ello world'));
However, instead of tweeting I would like to redirect the user to twitter.com, and have them already logged in.
Is there something within the API that can allow me to do this?