• Stars
    star
    153
  • Rank 243,368 (Top 5 %)
  • Language
    Rust
  • Created over 4 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Actix Web JWT

Actix Web JWT Example

Simple backend app with Actix-web, JWT and MongoDB

(JWT Token, Protect Route, Login & Register)

While developing the web service, I couldn't find good documentation or example (or up-to-date) to integrate jwt into my code. That's why I developed this example :)

Require

How to run

  • Create database and collection in mongodb.
  • Replace DATABASE_NAME and USER_COLLECTION_NAME with your database settings in config.env file.
  • If you want to change SECRET_KEY for JWT, you can change in config.env file.

.env file

DATABASE_NAME=YOUR_DATABASE_NAME
USER_COLLECTION_NAME=YOUR_USERS_COLLECTION_NAME
SECRET_KEY=Xqv8jTGLxT

APIs


POST /user/register

curl -X POST -i 'http://127.0.0.1:8080/user/register' \
  -H "Content-Type: application/json" \
  --data '{
    "name": "name",
     "surname": "surname",
    "email": "[email protected]",
    "password": "password"
  }'

Response

{
    "message": String,
    "status": bool
}

POST /user/login

curl -X POST -i 'http://127.0.0.1:8080/user/login' \
  -H "Content-Type: application/json" \
  --data '{
    "email": "[email protected]",
    "password": "password"
  }'

Response

{
    "message": String,
    "status": bool,
    "token": String
}

POST /user/userInformations


curl -X GET -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer TOKEN' \
  -i 'http://127.0.0.1:8080/user/userInformations'

Response

{
    "user_id": String,
    "name": String,
    "surname": String,
    "phone": String,
    "email": String,
    "password": String,
    "birth_date": String
}

POST /user/protectedRoute

curl -X GET -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer TOKEN' \
  -i 'http://127.0.0.1:8080/user/protectedRoute'

Response

bool