I am using django-rest-framework. It provides an awesome Django admin style browsable self-documenting API. But anyone can visit those pages and use the interface to add data (POST). How can I disable it?
|
|
You just need to remove the browsable API renderer from your list of supported renderers for the view. In REST framework 2 you can do this globally like so:
Or on a per-view basis like so:
Note: In 0.4.x you can only do so on a per-view basis |
|||
|
|
|
In your site or application copy the django-rest-framework template. Now you can adjust this template (renderer.html or djangorestframework/api.html depends on your version). The adjusted template overwrites the django-rest-framework template. I think adjusting this can disbale the admin login.... not tried it yet, just adjusted this to get my own texts there and a link back to the webapplication itselve. (in the branding part) actually the login is there to overwrite:
Just delete the login part, and at least there is no link anymore to logon. |
|||||
|