从 Twilio 中的值获取呼叫者

Get Caller From value in Twilio

我编写了一个脚本,每次收到呼叫时都会生成一个 wordpress post 以在我们的呼叫中心应用程序中记录一个服务事件,该应用程序在正确处理呼叫时正常工作并且创建了一个 wordpress post,但我无法将调用者的值传递给 Wordpress。正如您在下面看到的,我已经尝试了几件事。 这是我目前使用的代码:

$response = new TwiML;
$response = new VoiceResponse();

// $caller = $fromCaller;
$caller = $call['from'];
$caller .= $call['callerid'];
$caller .= $dial['callerid'];
$content = 'Service Request received from ' . $caller;

// Register the Request in to Wordpress
// Create post object
$my_post = array(
  'post_title'      =>  'Service Event',
  'post_type'       =>  'mce_service',
  'post_content'    =>  $content,
  'post_status'     =>  'private',
  'post_author'     =>  1
);

// Insert the post into the database
wp_insert_post( $my_post );

任何人都可以为我指明正确的方向,因为很明显我遗漏了一些东西并且文档没有帮助我。

我找到了我要找的东西并张贴了我自己的问题的答案,因为它可能对其他人有帮助。

$caller = $_REQUEST["From"];