-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev-mock-server-config.json
96 lines (96 loc) · 3.21 KB
/
dev-mock-server-config.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
{
"port": 3001,
"host": "0.0.0.0",
"authorization": {
"type": "headers"
},
"api": [
{
"method": "GET",
"path": "/api/v1/getAllMatches",
"response": {
"success": true,
"matches": [
{
"matchDate": 1651744228685,
"stadium": "Maracanã",
"homeTeam": "Brazil",
"awayTeam": "Serbia",
"matchPlayed": true,
"homeTeamScore": 1,
"awayTeamScore": 0
},
{
"matchDate": 1651744228685,
"stadium": "Stade de Suisse",
"homeTeam": "Switzerland",
"awayTeam": "Serbia",
"matchPlayed": true,
"homeTeamScore": 2,
"awayTeamScore": 2
},
{
"matchDate": 1651744228685,
"stadium": "Stadion Rajko Mitic",
"homeTeam": "Serbia",
"awayTeam": "Cameroon",
"matchPlayed": true,
"homeTeamScore": 0,
"awayTeamScore": 1
},
{
"matchDate": 1651744228685,
"stadium": "Maracanã",
"homeTeam": "Brazil",
"awayTeam": "Switzerland",
"matchPlayed": true,
"homeTeamScore": 3,
"awayTeamScore": 0
},
{
"matchDate": 1651744228685,
"stadium": "Maracanã",
"homeTeam": "Brazil",
"awayTeam": "Cameroon",
"matchPlayed": true,
"homeTeamScore": 4,
"awayTeamScore": 4
},
{
"matchDate": 1651744228685,
"stadium": "Stade de Suisse",
"homeTeam": "Switzerland",
"awayTeam": "Cameroon",
"matchPlayed": true,
"homeTeamScore": 2,
"awayTeamScore": 2
}
]
},
"authorization": {
"unauthorized": {
"success": false,
"error": "Unauthorized Access."
},
"status": 401,
"token": "YuHBdSlDXY000xa8IlCm7Qgq4_s"
}
},
{
"method": "GET",
"path": "/api/v1/getAccessToken",
"response": {
"success": true,
"access_token": "YuHBdSlDXY000xa8IlCm7Qgq4_s"
}
},
{
"method": "GET",
"path": "/api/version",
"response": {
"success": true,
"version": "1.0"
}
}
]
}