forked from weijunext/smart-excel-ai
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhello.http
107 lines (80 loc) · 2.01 KB
/
hello.http
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
# 需要安装 REST Client
###
#POST https://noxious-spooky-cauldron-v6rgv6j7xq9hwv6r-3000.app.github.dev/api/add
POST http://localhost:3001/api/add
Content-Type: application/json
{
"userId": "2",
"name": "1",
"email": "1",
"expertise": "1",
"skills": ["ux","mei"]
}
###
GET http://localhost:3001/api/interviewerDetail/17
Content-Type: application/json
{
"userId": "2",
"name": "1",
"email": "1",
"expertise": "1",
"skills": ["ux","mei"]
}
###
POST https://noxious-spooky-cauldron-v6rgv6j7xq9hwv6r-3000.app.github.dev/api/add
Content-Type: application/json
{
"userId": 2,
"interviewerId": 1,
"email": 1,
"expertise": 1
}
###
POST https://noxious-spooky-cauldron-v6rgv6j7xq9hwv6r-3000.app.github.dev/api/orderAdd
Content-Type: application/json
{
"userId": 1,
"interviewerId": 1,
"interviewerName": "Alice Johnson",
"interviewerAvatar": "/placeholder.svg?height=50&width=50",
"expertise": "Frontend Development",
"date": "2023-06-15",
"time": "14:00",
"duration": 60,
"price": 50,
"status": "Completed"
}
//查询我的订单列表
###
GET https://noxious-spooky-cauldron-v6rgv6j7xq9hwv6r-3000.app.github.dev/api/orderList?userId=2
###
GET https://noxious-spooky-cauldron-v6rgv6j7xq9hwv6r-3000.app.github.dev/api/orderDetail/3
###
GET https://smart-excel-ai-omega-six.vercel.app/api/auth/session
# 根据__Secure-next-auth.session-token,可以拿到登录者信息
###
GET https://noxious-spooky-cauldron-v6rgv6j7xq9hwv6r-3000.app.github.dev/api/user
Content-Type: application/json
{
"userId": 1,
"interviewerId": 1,
"interviewerName": "Alice Johnson",
"interviewerAvatar": "/placeholder.svg?height=50&width=50",
"expertise": "Frontend Development",
"date": "2023-06-15",
"time": "14:00",
"duration": 60,
"price": 50,
"status": "Completed"
}
// 添加评价
###
POST https://smart-excel-ai-omega-six.vercel.app/api/submitReview
Content-Type: application/json
{
"userId": "2",
"interviewerId": "5",
"orderId":"28",
"rating": 3,
"reviewText": "hello ni hao"
}