但是在尝试调用登录方法来验证我的安全 URL 在 HTTPS 中的位置时出现此错误。
SOAP-错误:解析 WSDL:无法从“这在 HTTP 中运行良好https://domain.com/index.php/api/v2_soap/index/?wsdl=1”加载:无法加载外部实体“https:/” /domain.com/index.php/api/v2_soap/index/?wsdl=1
$username = 'username';
$apiKey = 'apikey';
$api_url_v2 = "https://domain.com/api/v2_soap/?wsdl=1"
$cli = new SoapClient($api_url_v2);
$result = $cli->login(array('username' => $username, 'apiKey' => $apiKey));