DocuSign Embedded returns 超时异常?

DocuSign Embedded returns timed out exception?

我一直在使用 Docusign 通过以下 PHP 代码在我的 UI 中嵌入签名。我提供了正确的凭据,

public function sign(){
                $username = "sample@sample.com";
                $password = "sample";
                $integrator_key = "1fsfd0658-zv95-4317-a016-d9f76eaasdff9";
                // DocuSign environment we are using
        $host = "https://demo.docusign.net/restapi";
        // create a new DocuSign configuration and assign host and header(s)
        $config = new \DocuSign\eSign\Configuration();
        $config->setHost($host);
        $config->addDefaultHeader("X-DocuSign-Authentication", "{\"Username\":\"" . $username . "\",\"Password\":\"" . $password . "\",\"IntegratorKey\":\"" . $integrator_key . "\"}");
        // instantiate a new docusign api client
        $apiClient = new \DocuSign\eSign\ApiClient($config);
        // we will first make the Login() call which exists in the AuthenticationApi...
        $authenticationApi = new \DocuSign\eSign\Api\AuthenticationApi($apiClient);
        // optional login parameters
        $options = new \DocuSign\eSign\Api\AuthenticationApi\LoginOptions();
        // call the login() API
            echo "djfnksd";
        $loginInformation = $authenticationApi->login($options);
        // parse the login results
        if(isset($loginInformation) && count($loginInformation) > 0)
        {
            // note: defaulting to first account found, user might be a 
            // member of multiple accounts
            $loginAccount = $loginInformation->getLoginAccounts()[0];
            if(isset($loginInformation))
            {
                $accountId = $loginAccount->getAccountId();
                if(!empty($accountId))
                {
                    echo "Account ID = $accountId\n";
                }
            }
        }
            }

但是调用该方法时出错,

ApiClient.php 第 233 行中的 ApiException: API 调用 https://demo.docusign.net/restapi/v2/login_information 超时:

{
    "url": "https:\/\/demo.docusign.net\/restapi\/v2\/login_information",
    "content_type": null,
    "http_code": 0,
    "header_size": 0,
    "request_size": 0,
    "filetime": -1,
    "ssl_verify_result": 1,
    "redirect_count": 0,
    "total_time": 1.046,
    "namelookup_time": 0.515,
    "connect_time": 0.78,
    "pretransfer_time": 0,
    "size_upload": 0,
    "size_download": 0,
    "speed_download": 0,
    "speed_upload": 0,
    "download_content_length": -1,
    "upload_content_length": -1,
    "starttransfer_time": 0,
    "redirect_time": 0,
    "redirect_url": "",
    "primary_ip": "162.248.186.25",
    "certinfo": [],
    "primary_port": 443,
    "local_ip": "192.168.1.12",
    "local_port": 53163
}

我一窍不通,可能是什么错误?

它正在运行。我通过删除 ApiClient.php 中的 ssh 验证解决了这个问题。 通过评论下面的行

// disable SSL verification, if needed
   // if ($this->config->getSSLVerification() == false) {
        curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
        curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0);
    //}