2

我是 node.js 初学者,并尝试使用 Agora WebRTC SDK 阅读本文档。

https://docs.agora.io/en/user_guide/communication/webrtc_user_guide_communication.html#qs-communication-webrtc

关于本文档中的服务器主题,起初我使用“npm install”命令来制作 nodo_modules。接下来,我检查 ./server/nodejs/DemoServer.js 中的 APP_ID 和 APP_CERTIFICATE。但我找不到他们。DemoServer.js中APP_ID和APP_CERTIFICATE的值应该填在哪里?VENDER_KEY?

WebRTC 示例代码位于此下载链接。(无插件) https://www.agora.io/en/blog/download/

请帮助我启动此示例。

4

1 回答 1

1

You don't need the app certificate for the Video Call sample, just the appID.

The app ID (key) is being retrieved via user input on the HTML page itself.

Key: <input id="key" type="text" value="" size="36"></input>

console.log("Init AgoraRTC client with vendor key: " + key.value);
client = AgoraRTC.createClient({mode: 'interop'});
client.init(key.value, function () {
    console.log("AgoraRTC client initialized");
于 2018-01-09T22:23:32.493 回答