Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
if u succeed in login/tweet then there is no issue to open twitter.com, if you open twitter.com in next tab of browser then you will b automatically logged in that account. – diEcho Apr 18 '11 at 5:36
That's what I thought, however this does not seem to be the case. I open a new tab and it is not logged in.. – SpaghettiMonster Apr 18 '11 at 6:02
r u also closing twitter from API?? opening in iframe or on same page?? – diEcho Apr 18 '11 at 6:18
Not closing the connection, and opening twitter in the same page. – SpaghettiMonster Apr 18 '11 at 22:14

1 Answer

There is no way to log a user into twitter.com with an OAuth access token. The only way a user can get an authenticated session with twitter.com is by submitting the login form with their username/password.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.