GithubHelp home page GithubHelp logo

Comments (5)

marcgibbons avatar marcgibbons commented on May 6, 2024

Hi - sorry to hear you're having trouble. What does your urls.py look like?

from django-rest-swagger.

thisispuneet avatar thisispuneet commented on May 6, 2024

try forward slash in the end of url: http://localhost:8000/api-docs/api-docs/animals/
try this url directly in the browser and see if it works..

from django-rest-swagger.

blagofofo avatar blagofofo commented on May 6, 2024

Thanks for answering guys!

@thisispuneet Tried it with /users/ and it gives AttributeError on a ViewSet (which passes unit tests by itself) so something breaks.

@marcgibbons
Here is a sample for the users app:

router = SimpleRouter()
router.register(r'users', UsersViewSet, base_name='users')
urlpatterns = router.urls
urlpatterns += patterns('',
    url(r'^users/(?P<pk>\d+)/followees', FolloweesCollectionView.as_view(), name='api.users.views.followees-collection'),
    url(r'^users/(?P<pk>\d+)/followers', FollowersCollectionView.as_view(), name='api.users.views.followers-collection'),

And we also have one big urls.py which includes this in the following manner

urlpatterns = patterns('',
    # Uncomment the next line to enable the admin:
    url(r'^admin/', include(admin.site.urls)),
    url(r'^rest-api/', include('rest_framework_docs.urls')),

    #Users
    url(r'', include('api.users.urls')),

from django-rest-swagger.

thisispuneet avatar thisispuneet commented on May 6, 2024

Hmm I had the similar issue, this solution worked for me..
in:

python2.7/site-packages/rest_framework_swagger/urls.py

change the last url patterns,
from:
url(r'^api-docs/(?P<path>.*)/$', SwaggerApiView.as_view(), name='django.swagger.api.view'),
to:
url(r'^api-docs/(?P<path>.*)$', SwaggerApiView.as_view(), name='django.swagger.api.view'),

also make sure you have the correct "api_path" provided in settings.py

As blagovest-gospodinov-rn said:

Basically what I am trying to understand is why the rest swagger is looking for my app 'animals' in /api-docs/api-docs/ (the app is accessible through /animals).

rest swagger creates JSON files for each API, swagger pulls APIs-info from these JSONs.
rest swagger saves all these JSONs in /api-docs/
so its path is something like this.. url-to-rest-swagger/api-docs/API-path
(in your case: http://localhost:8000/api-docs/api-docs/{API-path} )
you can also check all the APIs its pulling, from: http://localhost:8000/api-docs/api-docs/

from django-rest-swagger.

marcgibbons avatar marcgibbons commented on May 6, 2024

Disabled appended slashes are now supported

from django-rest-swagger.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.