我正在測試RingCentral RingOut功能,並按照其中的文檔工作。但我面臨一些問題:如何進行測試RingOut呼叫?
- 哪些國家RingCentral支持調用(從和到)?
- 如何使用兩個不同的單元號碼進行測試呼叫?
目前,我正在RingOut請求,但響應我得到400錯誤的請求錯誤與該消息:從和‘從’(「無法識別的記號
:期待」空)
更新:
發送具有這些PARAMS AJAX請求:
var url = 'https://platform.devtest.ringcentral.com/restapi/v1.0/account/~/extension/~/ringout';
var data = {
"from": {"phoneNumber": "usa_phone_sandboxed"},/*from parameter is optional if there is a default number in user's forwarding numbers */
"to": {"phoneNumber": "usa_phone_real"}, /*to parameter is required */
/*"playPrompt": true optional field */
};
var headersArray = [
{"Content-Type": "application/json"},
{"Authorization": "Bearer "+my_access_token}
];
我正在使用沙盒帳戶。語言:瀏覽器端的Javascript。
請給我們看一些代碼。 – Rabban
@Rabban更新問題plz檢查此。 –