我已经从github下载了“Twilio Voice Quickstart for Android”预建应用程序。
在此应用程序中设置为动态编号
twiMLParams.put("to", contact.getText().toString());
并在服务器 php 代码上获取数字
$to = isset($_POST["to"]) ? $_POST["to"] : "";
if (!isset($to) || empty($to)) {
$to = isset($_GET["to"]) ? $_GET["to"] : "";
}
而 callerNumber 是静态的
$callerNumber = '1234567890';
我想从我的应用程序中动态设置 callerNumber (callerId)。可能吗 ?
谢谢