-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1006 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Test API</title>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
</head>
<body>
<script>
async function updatePoints(userId) {
try {
const response = await axios.patch(
`https://tgbot.growing3.ai/api/users/${userId}/point`,
{
type: "ton",
point: 50,
},
{
headers: {
accept: "application/json",
"Content-Type": "application/json",
},
}
);
console.log("Response:", response.data);
} catch (error) {
console.error("Error:", error);
}
}
// Replace 'yourUserId' with the actual user ID
const userId = "915540009";
updatePoints(userId);
</script>
</body>
</html>