Skip to content

emreyalvac/actix-web-jwt

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 

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": "user@email.com",
    "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": "user@email.com",
    "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

About

Actix Web JWT

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages