使用django-piston进行基本的http认证

时间:2010-07-21 07:36:03

标签: python django django-piston

我是新手。我在官方网站上看过代码片段(粘贴在下面)。 问题是如何将其部署到服务器?我在哪里设置用户名和密码凭据?在Apache的httpd.conf文件中?


from django.conf.urls.defaults import *
from piston.resource import Resource
from piston.authentication import HttpBasicAuthentication

from myapp.handlers import BlogPostHandler, ArbitraryDataHandler

auth = HttpBasicAuthentication(realm="My Realm")
ad = { 'authentication': auth }

blogpost_resource = Resource(handler=BlogPostHandler, **ad)
arbitrary_resource = Resource(handler=ArbitraryDataHandler, **ad)

urlpatterns += patterns('',
    url(r'^posts/(?P<post_slug>[^/]+)/$', blogpost_resource), 
    url(r'^other/(?P<username>[^/]+)/(?P<data>.+)/$', arbitrary_resource), 
)

1 个答案:

答案 0 :(得分:3)

默认情况下piston.authenticate.HttpBasicAuthentication使用 django.contrib.auth.authenticate检查凭据。

换句话说:您只需创建普通的Django用户即可“设置用户名和密码凭据”。