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

Bumps [swagger-ui](https://github.com/swagger-api/swagger-ui) from 3.14.0 to 3.23.11. Release notes *Sourced from [swagger-ui's releases](https://github.com/swagger-api/swagger-ui/releases).* > ## Swagger UI 3.23.11 Released! > ⚠️ **This release contains a security fix that addresses a CSS-based...

dependencies

Hi, I'm having issue setting up the token authentication with django_rest_swagger, I'm actually using session authentication and token authentication I successfully setup the token authentication in my app, but in...

Hi, Because of my API's specific settings, I need to pass an extra numeric param on header at every request I make. I'm unable to do this and I didn't...

Hi all, this is my situation:I want to add serval required and optional parameters to my api, but I don't know how to do that.Cause there always only one paremeter...

Hey guys, I use Django Oauth Toolkit for a Oauth2 password flow. Unfortunately, Swagger doesn't recognize the auth urls. This is my urls.py: ``` router = routers.DefaultRouter() router.register(r'users', views.UserViewSet) urlpatterns...

when idefine a cloum like "models.ForeignKey("self", blank=True, null=True, on_delete=None, related_name='children')",swagger will exist error

Django model filefiled is showing as String in Swagger UI and unable to browse files to upload thru UI. Please suggest me if any issues. Django==1.10, 1.11 django-mongodb-engine (0.6.0) django-rest-framework-mongoengine...

Following is my code in settings.py ``` SWAGGER_SETTINGS = { 'LOGIN_URL': 'api:login', 'LOGOUT_URL': 'api:logout', 'USE_SESSION_AUTH': False, 'DOC_EXPANSION': 'list', 'APIS_SORTER': 'alpha', 'SECURITY_DEFINITIONS': { 'api_key': { 'type': 'apiKey', 'in': 'header', 'name': 'Authorization',...

i am using this package rest framework and its working fine and i installed the packge and added that to installed packages and here is what i changed in my...

Hi, I have Django 2.1 and latest DRF. I installed latest django-rest-swagger. I have some APIs in CBV. My urls.py use path instead of url like below which is similar...