如何使用user service
从命令行测试curl
?
我们假设我有一个protoRPC
服务正在运行,我发布了类似的内容:
curl -H 'content-type:application/json' -d '{"name":"test1"}' http://localhost:8080/api.context_create
但此服务需要登录用户。我该如何模拟一个?
答案 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