我正在尝试使用下面的方法调用API中的函数,但我不确定我做错了什么。
JDialog
我得到了这个结果: 认证成功 它的平均API连接没问题。现在我以这种方式调用函数:
$wcfClient = new SoapClient('http://apisite.com/FlighSearch.svc?wsdl');
$postData=array(
'username'=>'username',
'password'=>'password'
);
$response = $wcfClient->UserAuthentication($postData);
echo $response->UserAuthenticationResult;
但它不适合我,请你检查一下是什么问题?