通过Paw app for Mac对本地App Engine服务器进行身份验证

时间:2017-12-13 04:14:11

标签: google-app-engine localhost paw-app

我正在运行App Engine的本地dev_appserver.py并尝试使用Paw app for Mac进行身份验证。

此处Paw正确呈现登录页面:

Paw rendering the local dev server login page

但是,每次我登录时,都会询问我是否要在Chrome中打开后续页面。

Paw responding with "This web page wants to open the following link"

我希望Paw存储登录凭据但不知道如何告诉它这样做。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

通过手动复制Google Chrome中的Cookie值,我找到了一种愚蠢的方法。这是我如何做到的:

  1. 通过Chrome登录本地应用
  2. 打开开发人员工具
  3. 存储下,展开 Cookie ,然后点击http://localhost:8080
  4. 找到名为dev_appserver_login
  5. 的Cookie

    Cookies in the Developer Tools Application tab

    接下来,只需将每个值复制到Paw的Cookie Sessions窗口即可。

    1. 打开 Cookie会话窗口
    2. NameValueDomainPath复制到Cookie列表中的一行
    3. Paw session cookies list

      回到Paw并执行需要auth的请求,一切正常:

      Paw after