我是新手。我在官方网站上看过代码片段(粘贴在下面)。 问题是如何将其部署到服务器?我在哪里设置用户名和密码凭据?在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),
)
答案 0 :(得分:3)
默认情况下piston.authenticate.HttpBasicAuthentication
使用
django.contrib.auth.authenticate
检查凭据。
换句话说:您只需创建普通的Django用户即可“设置用户名和密码凭据”。