You are probably using OAuth1.0. Google probably support oauth_callback only which is set when you set up your consumer.
You need to send oauth_callback when you get request token if you want use OAuth1.0a. OAuth had changed the timing of sending oauth_callback and added oauth_verifier. Check this document for the details. http://oauth.net/core/1.0a I'm not sure your library support 1.0a though. If not, use default oauth_callback which you set when you set up your consumer, and don't send oauth_verifier. On 2009/12/04, at 11:32, cahit Eyigünlü wrote: > I could not complete the third step when i try to get complete third step > user is not comming back from the google if i use oauth_callback method user > come back without oauth_verifier > > 04 Aralık 2009 03:56 tarihinde cahit Eyigünlü <[email protected]> > yazdı: > I have found from your sended article > could you please check if i have any mistake > > First request to : > https://www.google.com/accounts/OAuthGetRequestToken > with scope time_stamp Signature Consumer key > > Second Request to redirecting user to : > https://www.google.com/accounts/accounts/OAuthAuthorizeToken > with > oauth_token & oauth_token_subsecret > > and finally : > https://www.google.com/accounts/OAuthGetAccessToken > i need to make a get to this url > > i tryed on play ground it worked and on my own software i completed first two > steps to complete my software i need one last step > what do i need to send to OAuthGetAccessToken get authTokken and i think this > is for one time usage, is there any way to get auth token for longer time > oauth_token and oauth_token_secret > > > > > > 2009/12/4 mat...@gmail <[email protected]> > OAuth Auth token key? > Do you mean consumer key? or access token? > > On 2009/12/04, at 10:27, cahit Eyigünlü wrote: > > > http://www-opensocial.googleusercontent.com/api/people/@me/@self > > That is exactly what i am looking for but i could not see where would i use > > my oAuth Auth token key to get this info ... > > > > 2009/12/4 mat...@gmail <[email protected]> > > Google has Portable Contacts API, a standardized way to get user profile > > info. > > http://portablecontacts.net/draft-spec.html > > http://code.google.com/intl/en/apis/contacts/docs/poco/1.0/developers_guide.html > > > > You can also get their external site accounts on Google Profile, using > > Social Graph API. > > http://code.google.com/intl/en/apis/socialgraph/ > > > > Ident Engine is one of the easiest way to use Social Graph API. > > http://identengine.com/index.htm > > > > On 2009/12/04, at 8:24, File4Share wrote: > > > > > How could i get the logged user info on google ? which scope do i need > > > to use. I am able to getting token and auth token but i do not know > > > how could i get credentials :( > > > > > > -- > > > > > > You received this message because you are subscribed to the Google Groups > > > "OAuth" group. > > > To post to this group, send email to [email protected]. > > > To unsubscribe from this group, send email to > > > [email protected]. > > > For more options, visit this group at > > > http://groups.google.com/group/oauth?hl=en. > > > > > > > > > > -- > > > > You received this message because you are subscribed to the Google Groups > > "OAuth" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]. > > For more options, visit this group at > > http://groups.google.com/group/oauth?hl=en. > > > > > > > > > > -- > > > > You received this message because you are subscribed to the Google Groups > > "OAuth" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]. > > For more options, visit this group at > > http://groups.google.com/group/oauth?hl=en. > > -- > > You received this message because you are subscribed to the Google Groups > "OAuth" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/oauth?hl=en. > > > > > > -- > > You received this message because you are subscribed to the Google Groups > "OAuth" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/oauth?hl=en. -- You received this message because you are subscribed to the Google Groups "OAuth" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/oauth?hl=en.
