Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 1.4 KB

README.md

File metadata and controls

56 lines (44 loc) · 1.4 KB

RestAPi using JWT

  • Created a Rest Api using SpringBoot and implemented spring Security using JWT Authentication

Backend Work

  • User Api Call
  • Implement Security Configuration for JWT(JSON Web Token)

Tech Stacks

  • Java Core
  • Spring Data JPA
  • Spring Boot
  • Spring Security
  • Hibernate
  • JWT Authentication

User

[
    {
        "userId": "80faae55-930d-46c9-bc73-249e025fff62",
        "name": "Arpit Katiyar",
        "email": "[email protected]"
    },
    {
        "userId": "1b35ad00-8c5e-465d-9f71-75b390ece829",
        "name": "Ankit Katiyar",
        "email": "[email protected]"
    },
    {
        "userId": "e6beb993-095b-4845-8381-a460713f2fb7",
        "name": "Anuj Katiyar",
        "email": "[email protected]"
    },
    {
        "userId": "04043874-9c6e-4421-888e-d398c3669a25",
        "name": "Vikash Katiyar",
        "email": "[email protected]"
    }
]

Installation and Run

  • You can clone this repo and start the serve on localhost

  • Update the port number and use POSTMAN to send request

  • http://localhost:9091/auth/login (use to get token)

Screenshot (23)

Screenshot (25)