我在我的php项目中使用Twilio API,我能够检索调用者的信息,如国家代码等。但我无法找到可以提供其城市/州信息的东西,这里是我正在使用的API :
<?php
require 'Twilio/autoload.php';
use Twilio\Rest\Client;
// Your Account Sid and Auth Token from twilio.com/user/account
$accountSid = "<ACCOUNT SID>";
$authToken = "ACCOUNT TOKEN";
$client = new Client($accountSid, $authToken);
$number = $client->lookups->phoneNumbers("<PHONE NUMBER>")->fetch();
echo "<pre>";
print_r($number);
echo "</pre>";
?>
以下是我得到的回复:
[properties:protected] => Array
(
[callerName] =>
[countryCode] => US
[phoneNumber] => <PHONE NUMBER>
[nationalFormat] => <PHONE NUMBER>
[carrier] =>
[addOns] =>
[url] => https://lookups.twilio.com/v1/PhoneNumbers/<PHONE NUMBER>
)
答案 0 :(得分:2)
Twilio开发者传道者在这里。
您无法从基本,运营商或来电者姓名Lookups API获取地址详细信息。
但是,Twilio Add-ons marketplace可以轻松使用第三方服务来查找该信息。您可以添加White Pages Pro Caller Identification或Next Caller Advanced Caller ID加载项,并获取深入的地址信息。