Note that user session authentication is enabled by default for all endpoints, so it may not be feasible to use them without first disabling that (comment out the DEFAULT_AUTHENTICATION_CLASSES key+value in web/settings.py). Even then, I think the endpoints rely on at least 1 user existing to work, and there's currently no endpoint for registering users (though I suppose one could be created tediously in the Django shell).
You can confirm it works by sending a GET request to
http://127.0.0.1:8000/api/
. This should return a dictionary of supported endpoints:Note that user session authentication is enabled by default for all endpoints, so it may not be feasible to use them without first disabling that (comment out the
DEFAULT_AUTHENTICATION_CLASSES
key+value inweb/settings.py
). Even then, I think the endpoints rely on at least 1 user existing to work, and there's currently no endpoint for registering users (though I suppose one could be created tediously in the Django shell).