vote up 0 vote down star

Hi,

I have followed the steps defined in the following link for twitter oauth implementation.

https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4

Its working fine when i run through web browser but i want a user should be able to update status of twitter account through gmail chat i.e. he should only be authenticated once through web then he should be able to send the status message through gmail chat and his twitter account should be updated

How can i inegrate this because gmail id can be different from twitter id?

Please guide.

flag
Above link does not work. – Shoban Jun 16 at 11:31
Hi, yeh its working i made a mistake while writing the url now i have edited it. – rakesh Jun 16 at 11:34

3 Answers

vote up 0 vote down

When you authenticate with twitter using oauth your given credentials you can store and use later when posting updates.

link|flag
hi, thanks for the reply but can you elaborate on this. How can i store this data and use it later in my code. It would be better if you can share some example code. – rakesh Jun 16 at 11:38
You can sort these details in a cookie for example – Tom Aug 17 at 6:57
vote up 0 vote down

Try using this library,

http://emmense.com/php-twitter/

Cheers

link|flag
vote up 0 vote down

This might be help, I also face the same issue before, and it is now solved.

http://ruckuus.wordpress.com/2009/09/04/pecl-and-twitter-oauth/

Basically, after you ask a grant from user, then you access /access_token you will get authenticated oauth_token, and oauth_token_secret which is persistent. so further on you don't need access to access_token anymore if you already had these variables.

Storing it is very simple, either to put them in cookies (if you use web application) or in a plaintext.

Cheers, Ruckuus

link|flag

Your Answer

Get an OpenID
or

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