views:

29

answers:

1

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??

+1  A: 

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 ;)

mpcabd