Subscribe to:
Post Comments (Atom)
Create a Digital Clock using HTML and JavaScript
Create a Digital Clock using HTML and JavaScript <! DOCTYPE html> < html > < head > ...
Followers
Search This Blog
Popular Posts
-
MG-CEIT Course Feedback Form Step1: Like below three pages for the updated course information ...
-
Software Development Tools Presentation From the moment you begin developing software, whether as a freelancer for a startup or wo...
-
कोरोना को जाने प्रश्न (1) :- क्या कोरोना वायरस को ख़त्म किया जा सकता है उत्तर:- नहीं! कोरोना वायर...
-
CDAC Certifications Courses List IT Applications Certificate Course in Business Computing Certificate Course in Global su...
-
Question 1 Which framework is most commonly used for unit testing in Java? JUnit TestNG Mockito Selenium Answer: JUnit Question 2 I...
-
Use Request Dispatcher Servlet in creating simple Login Form We are going to create a Login Form Here. At the end of this section, y...
-
Most Important Java Interview Questions Core Java , JDBC , Spring , Hibernate , Servlet , JSP Interview Questions
-
Create a Digital Clock using HTML and JavaScript <! DOCTYPE html> < html > < head > ...
-
import redis from 'redis'; // Create a Redis client with retry strategy const client = redis.createClient({ host: 'localhos...
-
Database Management Questions (MCQ) with Answers Q1 A relational database consists of a collection of a) Tables b) ...
http://127.0.0.1:9092/api/auth/signup
ReplyDelete{
"username":"admin",
"email": "admin@gmail.com",
"password":"12345678",
"role":["user","admin","mod"]
}
Post Request SignIn:
http://127.0.0.1:9092/api/auth/signin
{
"username":"admin",
"password":"12345678"
}
Response:
{
"id": 3,
"username": "admin",
"email": "admin1@gmail.com",
"roles": [
"ROLE_USER",
"ROLE_MODERATOR",
"ROLE_ADMIN"
],
"tokenType": "Bearer",
"accessToken": "eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbiIsImlhdCI6MTYwMzQzMTQ1MSwiZXhwIjoxNjAzNTE3ODUxfQ.4XjdYWROQ7kX6DpgqaJKtlX_rL9iVvL8r_gd6JalJAI8kJx5AN5HxLJFV3X-AyGgjgnKgKElCIeh87Ysyr0pdA"
}
GET Request
http://127.0.0.1:9092/api/test/admin