2

私はこれの初心者です。公式サイト(以下に貼り付け)でコードスニペットを見ました。問題は、これをサーバーにどのようにデプロイするかです。ユーザー名とパスワードのクレデンシャルはどこに設定すればよいですか?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), 
)
4

1 に答える 1

3

By default piston.authenticate.HttpBasicAuthentication uses django.contrib.auth.authenticate to check credentials.

In other words: you "set username and password credentials" simply by creating normal Django Users.

于 2010-07-21T09:43:30.890 に答える