RingCentral 嵌入式语音网络应用程序

RingCentral Embeddable Voice inWeb Application

我在 MVC C# Web 应用程序中工作。我正在我的应用程序中实施 RingCentral Embeddable Voice。我想在点击呼叫时粘贴号码到 RingCentral 的 iFrame 内的拨号盘字段。请帮忙。谢谢。

Post 给 iframe 内的可嵌入语音的消息:

function postMessage(data) {
    document.getElementsByTagName('iframe')[0].contentWindow.postMessage(data, '*');
}


postMessage({
    type: 'rc-adapter-new-call',
    phoneNumber: number,
    toCall: false,
});

参考:https://github.com/ringcentral/ringcentral-js-widgets/issues/350#issuecomment-325078638