django-rest-swagger icon indicating copy to clipboard operation
django-rest-swagger copied to clipboard

Swagger Documentation Generator for Django REST Framework: deprecated

Results 103 django-rest-swagger issues
Sort by recently updated
recently updated
newest added

I have integrated swagger with django rest framework, but the swagger docs does not create a input box to post data for post request. Here is my view class snippet,`...

I follow the quick start demo and faced this problems

staticfiles was removed in django 3

my env: python 3.6 django 3.0.4 django-rest-swagger 2.2.0 djangorestframework 3.11.0 error: `Internal Server Error: /docs/ Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/django/core/handlers/exception.py", line 34, in inner response = get_response(request) File...

How do I restrict access to swagger docs in my django project to only admins ? Adding is_supersuser to SWAGGER_SETTINGS doesn't help.

On reloading Swagger UI, it is loosing the authentication. @marcgibbons Is there a way to keep the user login even if I reload the Swagger UI?

We've been using django-rest-swagger to document our API which is working pretty well, but it can be annoying when endpoints have complex permission requirements. For example, we have list endpoints...

Hello, I just added swagger to my API and am wondering what I can change to stop getting 401's in every request I make through this interface. I'm logging in...

Hi, I followed the steps here https://github.com/marcgibbons/django-rest-swagger/issues/479#issuecomment-233015294 When I do this: router = DefaultRouter( schema_title='Pastebin API', schema_renderers=[OpenAPIRenderer, SwaggerUIRenderer] ) I get: TypeError: __init__() got an unexpected keyword argument 'schema_title'. ---------------------------------------...