I have a django application that I\'d like to add some rest interfaces to. I\'ve seen http://code.google.com/p/django-rest-interface/ but it seems to be pretty simplistic.
Well, from the look of things, there's an authentication
parameter to Collection
. (see this example: authentication.py)
Second, (even if Django doesn't have it yet,) there should probably be a middleware that does CSRF/XSRF form checking. (Oh, there seems to be one.) You should also be able to use the login_required and permission_required decorators in the urls.py.