如何在Google App Engine上进行身份验证

时间:2011-06-16 19:59:18

标签: java google-app-engine rest httpwebrequest

我正在尝试通过webservice验证应用程序GAE。

我的步骤是:

  1. Take the token - 确定

  2. 在GAE验证应用程序。

  3. 这样:

    GET 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身份验证失败了

    有人可以告诉我为什么?

1 个答案:

答案 0 :(得分:0)