A REST-API for storing and finding Family and Friends info, built using Django REST Framework.
Endpoints:
- http://s4dman.pythonanywhere.com/api/token/
- http://s4dman.pythonanywhere.com/
username: guest
password: hidjango
- JSON Web Token Authentication
- GET/POST/PUT/DELETE friends info eg. name, dob, address, facebook, instagram etc.
User getting refresh and access token using username and passowrd:

User sending access token as Bearer to authenticate and access the API:

API returning friend's information :

Django REST Framework: https://www.django-rest-framework.org/
Simple JWT: https://django-rest-framework-simplejwt.readthedocs.io/en/latest/index.html
For learning purpose only!