所以我正在尝试使用Sinch API 来制作调用应用程序。我正在使用它进行电话会议,但电话仅针对第一人称并播放“您是此会议中唯一的人”的消息并在一段时间后挂断。 文档写道,可以多次使用相同的 API 来连接同一会议室中的多个电话号码。但无法完成任务。还联系了支持人员,但尚未得到答复。
任何帮助将不胜感激。
Waquar 以下作品非常适合我打电话随时添加我的号码并给我打电话 +15612600684 https://callingapi.sinch.com/v1/callouts 首先
{
"method" : "conferenceCallout",
"conferenceCallout" :
{
"cli" : "46000000000",
"destination" : { "type" : "number", "endpoint" : "+14154251021" },
"domain" : "pstn",
"custom" : "customData",
"locale" : "en-US",
"greeting" : "Welcome to my conference",
"conferenceId" : "coolconf",
"enableDice" : false
}
}
接着
{
"method" : "conferenceCallout",
"conferenceCallout" :
{
"cli" : "46000000000",
"destination" : { "type" : "number", "endpoint" : "+15612600684" },
"domain" : "pstn",
"custom" : "customData",
"locale" : "en-US",
"greeting" : "Welcome to my conference",
"conferenceId" : "coolconf",
"enableDice" : false
}
}