I'm playing around with Google Buzz API from Python,

During the OAuth process when I reach the part of authorizing the token from browser, I go to this URL https://www.google.com/buzz/api/auth/OAuthAuthorizeToken?oauth_token=..., and when I press OK, continue I expect to be directed to a page like this one http://code.google.com/apis/accounts/images/OauthUX_nocallback.png but instead I get a 404 Not Found error on this URL https://www.google.com/buzz/api/auth/OAuthPost :(

What's wrong? Has anyone tried the Google Buzz API for Installed Applications??

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

It seems that providing the domain parameter is essential even in Installed Applications, I set it to anonymous since I'm testing and the problem was solved :)

Sorry to bother you but I'm sure this will help others in the future ;)

link|improve this answer
Yeah, the parameter name is unfortunate. The value of domain must be your OAuth consumer key. – Bob Aman Jan 21 '11 at 0:05
Also, if you're using anonymous as your consumer key, you should probably send the xoauth_displayname parameter as well. It makes for a much better user experience. – Bob Aman Jan 21 '11 at 0:07
Yeah, I've figured that sending the xoauth_displayname will be better. I've also published my code here: mpcabd.igeex.biz/google-buzz-oauth-and-python – mpcabd Jan 21 '11 at 11:57
feedback

Your Answer

 
or
required, but never shown

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