curl php 35,PHP Curl Error 35 Peer reports it experienced an internal error

问题

I am trying to get PHP Curl working using the following code:

I own the domain that is using the api and I can make any changes to the server that it is running on.

ini_set('display_errors',1);

ini_set('display_startup_errors',1);

error_reporting(-1);

$data = array("username" => "derped", "authid" => "987654321", "ipaddress" => "1.2.3.4", "apikey" => "1234567829");

$data_string = json_encode($data);

$url = 'https://www.somedomain.com/test/api.php';

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: Content-Type: text/html'));

curl_setopt($ch, CURLOPT_POST, 1);

curl_setopt($ch, CURLOPT_POSTFIELDS,$data_string);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$result = curl_exec($ch);

if(curl_exec($ch) === false)

{

echo curl_error($ch);

}

else

{

echo 'ok';

}

curl_close($ch);

$received = json_decode($result);

$check = $received->{'good'};

echo $result;

echo $check;

?>

Curl returns the error: Peer reports it experienced an internal error.

When I curl the domain itself (https://www.somedomain.com) it returns the same error. Even when I use curl via the terminal it returns the 35 error, but when I try to curl the domain without HTTPS it returns the 302 found but since my domain is https only this will not be the solution, it just echos the move page. I know this has something todo with curl using https but https://www.google.com works so I dont know where to start...

回答1:

Below is an answer in from php.net. Apparently it should help solve the unknown protocol issue...

If you get an error with the error code 35 saying "Unknown SSL protocol error in connection to ...", maybe you are using the wrongs ciphers.

Try to precise a bunch of ciphers as below:

$arrayCiphers = array(

'DHE-RSA-AES256-SHA',

'DHE-DSS-AES256-SHA',

'AES256-SHA:KRB5-DES-CBC3-MD5',

'KRB5-DES-CBC3-SHA',

'EDH-RSA-DES-CBC3-SHA',

'EDH-DSS-DES-CBC3-SHA',

'DES-CBC3-SHA:DES-CBC3-MD5',

'DHE-RSA-AES128-SHA',

'DHE-DSS-AES128-SHA',

'AES128-SHA:RC2-CBC-MD5',

'KRB5-RC4-MD5:KRB5-RC4-SHA',

'RC4-SHA:RC4-MD5:RC4-MD5',

'KRB5-DES-CBC-MD5',

'KRB5-DES-CBC-SHA',

'EDH-RSA-DES-CBC-SHA',

'EDH-DSS-DES-CBC-SHA:DES-CBC-SHA',

'DES-CBC-MD5:EXP-KRB5-RC2-CBC-MD5',

'EXP-KRB5-DES-CBC-MD5',

'EXP-KRB5-RC2-CBC-SHA',

'EXP-KRB5-DES-CBC-SHA',

'EXP-EDH-RSA-DES-CBC-SHA',

'EXP-EDH-DSS-DES-CBC-SHA',

'EXP-DES-CBC-SHA',

'EXP-RC2-CBC-MD5',

'EXP-RC2-CBC-MD5',

'EXP-KRB5-RC4-MD5',

'EXP-KRB5-RC4-SHA',

'EXP-RC4-MD5:EXP-RC4-MD5');

curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, implode(':', $arrayCiphers));

Worked for me, could work for you!

P.S: Used with PHP 5.4 and cURL 7.26.0.

回答2:

Unable to get Curl working I decided to use file_get_contents and stream_context_create.

For those interested in an alternative:

Client:

$data = new stdClass();

$data->apikey = "1234567890";

$json_data = json_encode($data);

$post = file_get_contents('http://URL/api.php',null,stream_context_create(array(

'http' => array(

'method' => 'POST',

'content' => $json_data,

)

)));

if ($post) {

echo $post;

} else {

echo "POST failed";

}

API/Webservice:

$receive = fopen('php://input', 'r');

$received = stream_get_contents($receive);

$data = json_decode($received);

$apikey = $data->{'apikey'};

If($apikey == 1234567890)

{

$response = array("good" => true);

$goresponse = json_encode($response);

print_r($goresponse);

}

else

{

$response = array("good" => false);

$goresponse = json_encode($response);

print_r($goresponse);

}

Note that these are the basics, the stream would prob. need more arguments depending on the webservice restrictions, good luck!

回答3:

$arrayCiphers = array(

'DHE-RSA-AES256-SHA',

'DHE-DSS-AES256-SHA',

'AES256-SHA:KRB5-DES-CBC3-MD5',

'KRB5-DES-CBC3-SHA',

'EDH-RSA-DES-CBC3-SHA',

'EDH-DSS-DES-CBC3-SHA',

'DES-CBC3-SHA:DES-CBC3-MD5',

'DHE-RSA-AES128-SHA',

'DHE-DSS-AES128-SHA',

'AES128-SHA:RC2-CBC-MD5',

'KRB5-RC4-MD5:KRB5-RC4-SHA',

'RC4-SHA:RC4-MD5:RC4-MD5',

'KRB5-DES-CBC-MD5',

'KRB5-DES-CBC-SHA',

'EDH-RSA-DES-CBC-SHA',

'EDH-DSS-DES-CBC-SHA:DES-CBC-SHA',

'DES-CBC-MD5:EXP-KRB5-RC2-CBC-MD5',

'EXP-KRB5-DES-CBC-MD5',

'EXP-KRB5-RC2-CBC-SHA',

'EXP-KRB5-DES-CBC-SHA',

'EXP-EDH-RSA-DES-CBC-SHA',

'EXP-EDH-DSS-DES-CBC-SHA',

'EXP-DES-CBC-SHA',

'EXP-RC2-CBC-MD5',

'EXP-RC2-CBC-MD5',

'EXP-KRB5-RC4-MD5',

'EXP-KRB5-RC4-SHA',

'EXP-RC4-MD5:EXP-RC4-MD5');

curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, implode(':', $arrayCiphers));

来源:https://stackoverflow.com/questions/33228495/php-curl-error-35-peer-reports-it-experienced-an-internal-error

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值