简体   繁体   English

思科呼叫管理器API会议设备

[英]Cisco call manager api to conference a device

I'm trying to implement some click to dial functionality as follows: 我正在尝试实现一些单击拨号功能,如下所示:

  1. A user finds a number on a webpage (say employee extension) 用户在网页上找到一个号码(例如员工分机号)
  2. Clicking that extension will dial a phone number that I've picked 点击该分机将拨打我选择的电话号码
  3. Upon answering that call, I am immediately "conferenced" into calling the number I actualy wanted to dial. 接听电话后,我立即“开会”拨打了我实际上想拨打的号码。

I've done something very similar using a Twilio API but want to use our corporate Cisco Call Manager capabilities instead of paying per minute for this functionality. 我已经使用Twilio API做过非常相似的事情,但我想使用我们公司的Cisco Call Manager功能,而不是按分钟付费。

The WebDialerSOAP doesn't seem to be able to give me this functionality. WebDialerSOAP似乎无法为我提供此功能。 I think doing a conference would work but can't find anything to do that. 我认为召开会议会有效,但找不到任何办法。 Possibly an open source call manager wrapper? 可能是开源的呼叫管理器包装器?

why not a FreeSWITCH server alongside the CUCM? 为什么不将FreeSWITCH服务器与CUCM一起使用? It can set up conferences, and it's one of themost programmable products with as much control over API as you want. 它可以设置会议,它是最可编程的产品之一,可以根据需要对API进行尽可能多的控制。

It has also an RTMP module, so you can actually run a Flash-based softphone out of your browser 它还具有RTMP模块,因此您实际上可以在浏览器中运行基于Flash的软件电话

  1. Use TAPI3 or JTAPI 使用TAPI3或JTAPI
  2. Connect the code using TSP, and Application user 使用TSP和应用程序用户连接代码
  3. use CreateCall function to the number from HTML page with implementing the trigger. 使用CreateCall函数将HTML页面中的号码与触发器一起使用。
  4. use CreateCall to the other phone. 使用CreateCall呼叫另一部电话。
  5. use Finish(FINISH_MODE.FM_ASCONFERENCE) to complete conference. 使用Finish(FINISH_MODE.FM_ASCONFERENCE)完成会议。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM