0
我正在嘗試使用WHMCS API來獲取客戶端。所以,當我運行該文件PHP,它給了我這個錯誤在JSON:身份驗證失敗錯誤,何時使用WHMCS Api
{「結果」:「錯誤」,「消息」:「驗證失敗」}
,當我測試用戶名和密碼,他們在網站上進行身份驗證。
請提出解決方案。
<?php
// Création d'une ressource cURL
$ch = curl_init();
//L'URL à récupérer
curl_setopt($ch, CURLOPT_URL, 'https://example.com/includes/api.php');
//TRUE pour que PHP fasse un HTTP POST
curl_setopt($ch, CURLOPT_POST, 1);
//les données à passer lors d'une opération de HTTP POST
curl_setopt($ch, CURLOPT_POSTFIELDS,
http_build_query(
array(
'action' => 'GetClients',
'username' => 'myUsername',
'password' => 'myPassword',
'responsetype' => 'json')
)
);
$response = curl_exec($ch);
curl_close($ch);
// Decode response
$jsonData = json_decode($response, true);
// Dump array structure for inspection
//var_dump($jsonData);
?>
任何建議或答案?! –