1👍
✅
You use the class EntryResource instead of the instance of this class entry_resource:
(r'^api/', include(EntryResource.urls)),
change it:
(r'^api/', include(entry_resource.urls)),
Source:stackexchange.com