-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.json
109 lines (109 loc) · 2.32 KB
/
server.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"login": [
{
"id": "1",
"email": "joedoe@gmail.com",
"password": "joedoe2025",
"message": "Login successful",
"session": {
"AccessToken": "Bearer 1-access-token",
"ExpiresIn": 3600,
"TokenType": "Bearer",
"RefreshToken": "Bearer 1-refresh-token",
"meta": {
"id": "1",
"email": "joedoe@gmail.com",
"name": "Joe Doe"
},
"firstLogin": false
}
},
{
"id": "cdb1",
"email": "matheussdev3@gmail.com",
"password": "@Thomas2208"
},
{
"id": "25e5",
"email": "matheussdev3@gmail.com",
"password": "@Thomas2208"
},
{
"id": "3e45",
"email": "matheussdev3@gmail.com",
"password": "@Thomas2208"
},
{
"id": "eff1",
"email": "matheussdev3@gmail.com",
"password": "@Thomas2208"
},
{
"id": "813c",
"email": "matheussdev3@gmail.com",
"password": "navigate"
},
{
"id": "614c",
"email": "matheussdev3@gmail.com",
"password": "@Thomas2208"
},
{
"id": "352e",
"email": "matheussdev3@gmail.com",
"password": "@Thomas2208"
},
{
"id": "09bb",
"email": "matheussdev3@gmail.com",
"password": "@Thomas2208|"
},
{
"id": "f596",
"email": "matheussdev3@gmail.com",
"password": "@Thomas2208"
},
{
"id": "b594",
"email": "matheussdev3@gmail.com",
"password": "@Thomas2208"
},
{
"id": "b4f3",
"email": "matheussdev3@gmail.com",
"password": "@Thomas2208"
},
{
"id": "9604",
"email": "matheussdev3@gmail.com",
"password": "@Thomas2208"
}
],
"register": [
{
"id": "3",
"email": "joedoe@gmail.com",
"password": "joedoe2025",
"name": "Joe Doe",
"message": "User registered successfully"
}
],
"refreshToken": [
{
"id": "1",
"message": "Token refreshed successfully",
"session": {
"AccessToken": "Bearer 1-access-token",
"ExpiresIn": 3600,
"TokenType": "Bearer",
"RefreshToken": "Bearer 1-new-refresh-token",
"meta": {
"id": "1",
"email": "joedoe@gmail.com",
"name": "Joe Doe"
},
"firstLogin": false
}
}
]
}