How to disable admin-style browsable interface of django-rest-framework?

后端 未结 3 1269
感情败类
感情败类 2020-11-29 15:47

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 dat

3条回答
  •  独厮守ぢ
    2020-11-29 16:22

    import rest_framework
    
    For Production Only
     REST_FRAMEWORK = {
         'DEFAULT_RENDERER_CLASSES': (
             'rest_framework.renderers.JSONRenderer',
         )
     }
    

    Just Add this to your Settings.py should disable the Browsable API!

提交回复
热议问题