如何在 Google App Engine 上进行身份验证
我正在尝试通过 Web 服务对应用程序 GAE 进行身份验证。
我的步骤是:
获取令牌 - 确定
对应用程序进行身份验证GAE。
这样:
获取 http://myapp.com/_ah/login ?continue=http://myapp.com/&auth=tokenIsHere 工作正常。
但是当我尝试发出新请求
GET 时 http://www.myapp.com/api/list/&auth=tokenIsHere .. 401 未经授权。
但是..如果我这样做,它就会起作用: http://myapp .com/_ah/login?continue=http://www.myapp.com/api/list/&auth=tokenIsHere
这意味着我的令牌是正确的,但我的GAE身份验证不成功
有人可以告诉我为什么?
I'm trying to authenticate an application GAE by webservice.
My steps are:
Take the token - OK
Authenticate an application at GAE.
This way:
GET
http://myapp.com/_ah/login?continue=http://myapp.com/&auth=tokenIsHere works fine.
But when I try to make a new request
GET
http://www.myapp.com/api/list/&auth=tokenIsHere .. 401 Unauthorized.
But .. if I GET this way, it works:
http://myapp.com/_ah/login?continue=http://www.myapp.com/api/list/&auth=tokenIsHere
Which means that my token is correct, but my GAE authentication was unsuccessfully
Someone can tell me why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这篇文章解决了我的问题: http://javagwt.blogspot .com/2009/12/authenticating-android-app-to-google.html
This post solved my problem: http://javagwt.blogspot.com/2009/12/authenticating-android-app-to-google.html