3
require 'vendor/autoload.php';
use Plivo\RestAPI;

$auth_id = "My AUTH_ID";
$auth_token = "My AUTH_TOKEN";

$p = new RestAPI($auth_id, $auth_token);
$params = array(
        'number' => '12512077502' # Phone number to buy
    );
$response = $p->get_number($params);
print_r ($response);

它会给我错误信息

Array ( 
    [status] => 404 
    [response] => Array ( 
          [api_id] => 0b6214ee-aec4-11e5-ae4f-22000ac69a0d 
          [error] => not found 
 ) )

见这里https://www.plivo.com/docs/getting-started/phone-number-api/#rent-a-number

4

2 回答 2

1

您似乎使用了 python 帮助程序库中的错误函数 (get_number)。正确的是使用 PhoneNumber API 的“buy_phone_number”函数。

参考 - https://github.com/plivo/plivo-python/blob/master/plivo.py#L175

于 2016-02-16T07:43:04.553 回答
0

我正在使用 Python plivo 模块并且遇到了同样的问题。

来自 Plivo 支持:“使用新的 API: https ://www.plivo.com/docs/api/number/phonenumber/#buy-number ”

我发现 plivo 模块在租用电话号码时使用了错误的 URL。我的解决方法是在没有帮助程序库的情况下进行调用。以下是 Python 代码,但它可能会帮助您了解该怎么做。

import requests

params = {
        'number' : phone_number # Phone number to buy
        }

host = 'https://api.plivo.com/v1/Account/%s/PhoneNumber/%s/' % \
       (account_sid, phone_number)

r = requests.post(host, timeout=5, json=params, auth=(account_sid, auth_token))
assert r.status_code == 201, 'r.status_code=%s' % `r.status_code`

更新:毕竟上面可能没有必要。我刚刚从 Plivo 支持那里得到了更新。新方法名称是buy_phone_number()代替get_number(). 这为我解决了问题。我认为 PHP 库也是如此。

于 2016-02-15T22:57:45.883 回答