AppEngine从命令行测试用户服务

时间:2012-11-27 01:14:16

标签: python google-app-engine protorpc

如何使用user service从命令行测试curl

我们假设我有一个protoRPC服务正在运行,我发布了类似的内容:

curl -H 'content-type:application/json' -d '{"name":"test1"}' http://localhost:8080/api.context_create

但此服务需要登录用户。我该如何模拟一个?

1 个答案:

答案 0 :(得分:0)

看起来您需要分两步完成(有关详细信息,请参阅this链接)。第一个是提交请求:

$ curl http://localhost:8000/_ah/login -d "email=youremail@here.com&action=Log+In" -c -

响应将如下所示:

localhost FALSE / FALSE 0 dev_appserver_login "youremail@here.com:False:0123456789101112"

然后,您可以使用提供的Cookie向目标网页提交请求。在你的情况下(假设上面的cookie)你可以尝试:

curl -H 'content-type:application/json' \
    -d '{"name":"test1"}' \
    -b "dev_appserver_login="youremail@here.com:False:0123456789101112"" \
    http://localhost:8080/api.context_create