Softlayer API PHP 错误函数 ("setObjectFilter") 不是此服务的有效方法

Softlayer API PHP error Function ("setObjectFilter") is not a valid method for this service

我尝试使用对象过滤器来获取有效设备:

下面是 php 代码:

$client= SoftLayer_SoapClient::getClient('SoftLayer_Account', null, $username, $apiKey);

    $filter = new stdClass();
    $filter->applicationDeliveryControllers = new stdClass();
    $filter->applicationDeliveryControllers->billingItem = new stdClass();
    $filter->applicationDeliveryControllers->billingItem->id = new stdClass();
    $filter->applicationDeliveryControllers->billingItem->id->operation = new stdClass();
    $filter->applicationDeliveryControllers->billingItem->id->operation = $bId;

    $client->setObjectFilter($filter);  

    try {
          $mask ='mask[id, name]';
            $client->setObjectMask($mask);
        $myInstance = $clientNetscaler->getApplicationDeliveryControllers();

    } catch(exception $ex) {

    } 

我在 运行 时间环境中遇到以下错误:

There was an error querying the SoftLayer API: Function ("setObjectFilter") is not a valid method for this service

错误来自行 $client->setObjectFilter($filter);

有人知道为什么会出现这样的错误吗?

对我来说,过滤器工作正常。为了以防万一,我复制了我的代码。请确保您拥有 PHP 5.2.3 或更高版本以及 SOAP 的 PHP 扩展。也尝试重新下载 Softlayer PHP 客户端 https://github.com/softlayer/softlayer-api-php-client 并重试。

此致

<?php
 require_once ('/SoapClient.class.php');
 $apiUsername = 'set me';
$apiKey = 'set me';

$accountService = Softlayer_SoapClient::getClient('SoftLayer_Account', null,$apiUsername, $apiKey);
$bId = 51774239;
$filter = new stdClass();
$filter->applicationDeliveryControllers = new stdClass();
$filter->applicationDeliveryControllers->billingItem = new stdClass();
$filter->applicationDeliveryControllers->billingItem->id = new stdClass();
$filter->applicationDeliveryControllers->billingItem->id->operation = new     stdClass();
$filter->applicationDeliveryControllers->billingItem->id->operation = $bId;
$accountService->setObjectFilter($filter);  
$mask ='mask[id, name]';
$accountService->setObjectMask($mask);
try {
    $myInstance  = $accountService->getApplicationDeliveryControllers();
    print_r($myInstance);
} catch (Exception $e) {
    die('Unable to executre the request. ' . $e->getMessage());
}