-
Notifications
You must be signed in to change notification settings - Fork 7
/
example.html
37 lines (34 loc) · 1.17 KB
/
example.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lanyard</title>
</head>
<body>
<script src="https://cdn.jsdelivr.net/gh/xaronnn/js-lanyard/lanyard.js"></script>
<script type="text/javascript">
// websocket with single user example
lanyard({
userId: "213325478096797697",
socket: true,
onPresenceUpdate: console.log // presenceData
}) // returns a websocket
// websocket with multiple users example
lanyard({
userId: ["213325478096797697", "331846231514939392"],
socket: true,
onPresenceUpdate: console.log // presenceData[]
}) // returns a websocket
// rest with single user example
lanyard({
userId: "213325478096797697",
}).then(console.log) // presenceData
// rest with multiple users example
lanyard({
userId: ["213325478096797697", "331846231514939392"],
}).then(console.log) // presenceData[]
</script>
</body>
</html>