Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
what you mean? you have django-rest-framework.org/library/authentication.html – Efazati Aug 15 '12 at 3:06
Yes, users can login and use the API. But I don't want to show the admin-style browsable page to them. – iForests Aug 15 '12 at 7:25

2 Answers

up vote 4 down vote accepted

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:

REST_FRAMEWORK = {
    'DEFAULT_RENDERER_CLASSES': (
        'rest_framework.renderers.JSONRenderer',
    )
}

Or on a per-view basis like so:

class MyView(...):
    renderer_classes = [renderers.JSONRenderer]

Note: In 0.4.x you can only do so on a per-view basis

share|improve this answer

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:

        <div id="user-tools">
      {% if user.is_active %}Welcome, {{ user }}.{% if logout_url %} <a href='{{ logout_url }}'>Log out</a>{% endif %}{% else %}Anonymous {% if login_url %}<a href='{{ login_url }}'>Log in</a>{% endif %}{% endif %}
            <br><br>Back to <a href="/iamit-cool-app/">IAmIT Cool webapp</a>
    </div>

Just delete the login part, and at least there is no link anymore to logon.

share|improve this answer
This is not secure approach. – Ravi Kumar Oct 30 '12 at 4:30
I thought security was not the issue, we have authentication and authorisation for that. – michel.iamit Oct 31 '12 at 12:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.