Google Buzz API 中的 404 响应
我正在使用 Python 中的 Google Buzz API,
在 OAuth 过程中,当我到达从浏览器授权令牌的部分时,我会转到此 URL https://www.google.com/buzz/api/ auth/OAuthAuthorizeToken?oauth_token=...
,当我按确定,继续
时,我希望被定向到这样的页面 http://code.google.com/apis/accounts/images/OauthUX_nocallback.png 但我得到了404 Not Found 错误
https://www.google.com/buzz/api/auth/OAuthPost
:(
出了什么问题?有人尝试过安装 Google Buzz API 吗?应用程序??
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??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来提供
domain
参数即使在已安装的应用程序中也是必不可少的,我将其设置为anonymous
因为我正在测试并且问题已解决:)抱歉打扰您,但是我相信这将在未来帮助其他人;)
It seems that providing the
domain
parameter is essential even in Installed Applications, I set it toanonymous
since I'm testing and the problem was solved :)Sorry to bother you but I'm sure this will help others in the future ;)