您好我正在尝试使用 Limoanywhere 系统设置 api 服务。但无论我做什么,我都会得到无效的 ApiKey 和 ApiID。我进入后台系统并多次更改 ApiKey & ApiId 但仍然没有成功。
谁能告诉我我的代码是否正确?
<?php
$client = new SoapClient('https://qa.book.mylimobiz.com/api/ApiService.asmx?wsdl');
$options = array(
'ApiKey' => '***api key here****',
'ApiID' => '***api id here****'
);
$result = $client->__soapCall('Test', $options);
//var_dump($client->__getFunctions());
print_r($result);
?>
这是服务的片段
http://qa.book.mylimobiz.com/api/ApiService.asmx?op=Test
这是我在运行我的 php 代码时得到的结果。
Array ( [TestResult] => Array ( [ResponseCode] => 1 [ResponseText] => Invalid ApiId or ApiKey ) )