我是node.js的初学者,尝试使用Agora WebRTC SDK阅读本文档。
关于本文档中的服务器主题, 起初,我使用“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/
请帮我推出这个样本。
答案 0 :(得分:1)
您不需要视频通话示例的应用证书,只需要appID。
正在通过HTML页面本身的用户输入检索应用程序ID(密钥)。
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");