从 Twilio 中的值获取呼叫者

问题描述 投票:0回答:1

我编写了一个脚本,每次收到呼叫时都会生成一个 WordPress 帖子,以在我们的呼叫中心应用程序中记录一个服务事件,只要正确处理呼叫并创建一个 WordPress 帖子,该脚本就能正常工作,但是我我无法将呼叫者的值传递给 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 );

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

twilio twilio-php
1个回答
0
投票

我找到了我正在寻找的内容,并发布了我自己问题的答案,因为它可能会帮助其他人。

$caller = $_REQUEST["From"];

© www.soinside.com 2019 - 2024. All rights reserved.