1👍
✅
Your last line in urls.py
should read:
url(r'^articles/api/', include(article_resource.urls)),
The article
part is automatically generated by tastypie using the model name. You should not include it in your main urls.py
.
Source:stackexchange.com