agora.io

Error while calling the start POST call in Agora API

荒凉一梦 提交于 2020-08-10 22:53:48
问题 I am trying to make API calls to the Agora Cloud Recording API through their Postman Environment, but I am getting a 404 error during the query and stop calls. The acquire call returns a 200 response with the ResourceId and the start call also returns a 200 response with the sid. I have enabled Cloud Recording functions from the Agora dashboard. I have also double-checked my bucket credentials. This is what the start API body looks like: { "cname":"bhavya", "uid":"123", "clientRequest":{

Error while calling the start POST call in Agora API

余生长醉 提交于 2020-08-10 22:50:35
问题 I am trying to make API calls to the Agora Cloud Recording API through their Postman Environment, but I am getting a 404 error during the query and stop calls. The acquire call returns a 200 response with the ResourceId and the start call also returns a 200 response with the sid. I have enabled Cloud Recording functions from the Agora dashboard. I have also double-checked my bucket credentials. This is what the start API body looks like: { "cname":"bhavya", "uid":"123", "clientRequest":{

Error while calling the start POST call in Agora API

一世执手 提交于 2020-08-10 22:48:14
问题 I am trying to make API calls to the Agora Cloud Recording API through their Postman Environment, but I am getting a 404 error during the query and stop calls. The acquire call returns a 200 response with the ResourceId and the start call also returns a 200 response with the sid. I have enabled Cloud Recording functions from the Agora dashboard. I have also double-checked my bucket credentials. This is what the start API body looks like: { "cname":"bhavya", "uid":"123", "clientRequest":{

Web Agora.io DYNAMIC_KEY_EXPIRED

点点圈 提交于 2020-06-29 03:34:41
问题 I am using c# with mvc. I used this code to generate token and generated successfully. but after generate token when join channel using .join() it return DYNAMIC_KEY_EXPIRED. I Used "AgoraRTCSDK-3.1.0.js" I used https://github.com/AgoraIO/Tools/blob/master/DynamicKey/AgoraDynamicKey/csharp to generate dynamic token If any one has experience on Agora.io, please help me. Sample code is.. AccessToken token = new AccessToken(apiKey, appCertificate, channelName, "0"); token.addPrivilege(Privileges

Flutter - webRTC Video Call signalling doesn't work

半城伤御伤魂 提交于 2020-05-17 08:46:41
问题 I am able to implement voice and video call using agora.io library which is available at https://www.agora.io/ && https://github.com/AgoraIO/Flutter-SDK how ever the process for starting a call is both user has to join a particular channel name defined by the user manually or automatically. which is not the practical way. Is there any way to create a separate signalling system (may be using, nodejs socket, firebase or one-signal notification? ) What's the simultaneous/parallel way to be used

How to show incoming video call using react native agora

℡╲_俬逩灬. 提交于 2020-05-17 08:31:12
问题 I want to add real time calling feature in my react native app. I am using agora with socket.io to make it real time and it's working fine when app is in foreground, but I am stuck when app is closed because socket does not work when app is closed I want to show WhatsApp like incoming call screen. Kindly help me. Thanks in advance. 回答1: You can check out this library: https://github.com/react-native-webrtc/react-native-callkeep It uses callkit on the ios side and connection service on the

how to integrate Callkit with Agora VOiP in swift 4 iOS?

我们两清 提交于 2019-12-08 10:20:15
问题 I want to integrate apple Callkit with Agora VOiP in swift 4 iOS. Please give any suggestions How can I do that. 回答1: To integrate voip, you will have to use both, callKit and PushKit. CallKit will be used to show native call screen and handlers during in call transition while Pushkit will be used to invoke app, when app is killed. Its easy to integrate :- Enable background modes in info.plist and check option "App provides Voice over IP services". Import Callkit in the viewcontroller

Progressive Web App: Error Accessing navigator.mediaDevices.getUserMedia?

99封情书 提交于 2019-11-28 06:32:20
问题 My app accesses the camera for purposes of webrtc, and works correctly. I'm using pwacompat from Google Labs to add pwa features to my web app. When running the app as a pwa , everything works fine until I access the camera. Then I get this console.log error: getUserMedia failedObject {type: "error", msg: "undefined is not an object (evaluating 'navigat…"} getUserMedia failed type: error msg: undefined is not an object (evaluating 'navigator.mediaDevices.getUserMedia') What am I missing? 回答1: