Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Why is the route correct but still giving 404 error on Django

I got a 404 error on my website when accessing the correct route, did I do something wrong

urls.py handles the main route

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

from django.contrib import admin
from django.urls import path,include,re_path
urlpatterns = [
    path('admin/', admin.site.urls),
    re_path(r'api/facebook/(.+?)', include('apifacebooks.urls')),
    path('', include('app.urls')),
    path('getcookie', include('app.urls')),
    path('change-lang', include('app.urls')),
    re_path(r'auth/(.+?)', include('app.urls')),
]

urls.py handles routes in the apifacebooks app

from django.urls import path
from . import views

urlpatterns = [
    path('api/facebook/like-post',views.like_post)
]

And when I go to http://localhost:8000/api/facebook/like-post I get a 404 error

Image error 404

My question has been solved, thanks

>Solution :

In your apifacebooks app change the path because you had "api…" double in the path


from django.urls import path
from . import views

urlpatterns = [
    path('like-post/',views.like_post)
]

And in the root urls.py just

path('api/facebook/', ....)
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading