如何将密码传递给Pyramid和Cornice?

时间:2012-08-25 20:41:25

标签: python pyramid cornice

我有这样的网址:

http://site/account/login/

我想通过命令行执行此操作,无需使用表单。

import requests
requests.get(url, auth=('username-goes-here', 'password-goes-here'))

但是如何使用Cornice在Pyrmaid中设计我的视图功能呢?

@user.get()
def login(request):

我根本没有看到auth元组中出现requests.GET元组。我需要能够把这些参数拿出来......

有什么想法吗?

1 个答案:

答案 0 :(得分:4)

您可以使用HTTP标头传递身份验证令牌。 见http://cornice.readthedocs.org/en/latest/tutorial.html