嘿家伙希望你能帮助我。
我正在实现一个支付网关,并通过 curl 通过不断收到错误号来发送请求。
35,“连接中的未知 SSL 协议错误”
如果我直接通过浏览器将表单发布到 url,它可以正常工作,得到正确的响应等,但问题是当我使用 curl 时。
我的小型缩小版代码是
$query="type=sale&username=demo&password=password&ccnumber=4111111111111111&ccexp=1013&amount=50";
$request = curl_init("https://secure.msicharge.com/api/transact.php"); // initiate curl object
curl_setopt($request, CURLOPT_HEADER, 0); // set to 0 to eliminate header info from response
curl_setopt($request, CURLOPT_RETURNTRANSFER, 1); // Returns response data instead of TRUE(1)
curl_setopt($request, CURLOPT_POSTFIELDS, $query); // use HTTP POST to send form data
curl_setopt($request, CURLOPT_SSL_VERIFYPEER, FALSE); // uncomment this line if you get no gateway response.
$data = curl_exec($request);
echo $data;
echo curl_errno($request),curl_error($request) ;
curl_close ($request);
有任何想法吗?提前致谢。