-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpushingEvents.js
89 lines (66 loc) · 2.15 KB
/
pushingEvents.js
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
const {sdk, SpeakerEvent} = require("@symblai/symbl-js");
const APP_ID = "<your App ID>";
const APP_SECRET = "<your App Secret>";
const PHONE_NUMBER = "<your phone number>";
(async () => {
try {
await sdk.init({
"appId": APP_ID,
"appSecret": APP_SECRET
});
const connection = await sdk.startEndpoint({
"endpoint": {
"type": "pstn",
"phoneNumber": PHONE_NUMBER
}
});
const {connectionId} = connection;
console.log(`Successfully connected. ConnectionId: ${connectionId}`);
const speakerEvent = new SpeakerEvent({
"type": SpeakerEvent.types.startedSpeaking,
"user": {
"userId": "[email protected]",
"name": "John"
}
});
speakerEvent.timestamp = new Date().toISOString();
// Use pushEventOnConnection from the sdk instance to push event on connection
sdk.pushEventOnConnection(
connectionId,
speakerEvent.toJSON(),
(err) => {
if (err) {
console.error(
"Error during push event.",
err
);
} else {
console.log("Event pushed!");
}
}
);
/*
* Scheduling stop endpoint call after 60 seconds for the demonstration purpose
* In real adoption, sdk.stopEndpoint() should be called when the meeting or call actually ends
*/
setTimeout(
() => {
sdk.stopEndpoint({
"connectionId": connection.connectionId
}).then(() => {
console.log("Stopped the connection");
}).
catch((err) => console.error(
"Error while stopping the connection.",
err
));
},
60 * 1000
);
} catch (err) {
console.error(
"Error in SDK initialization.",
err
);
}
})();