我已经用CodeIgniter创建了一个项目,现在我想集成instamojo支付网关。但是,当我尝试结账时,我面临着以下问题。
“错误:出了问题。cURL以号码:7引发错误,消息:未能连接到test.instamojo.com端口443:连接超时。”
我使用的代码是由instamojo文档提供的
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://www.instamojo.com/api/1.1/payment-requests/');
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($ch, CURLOPT_HTTPHEADER,
array("X-Api-Key:API_KEY",
"X-Auth-Token:AUTH"));
$payload = Array(
'purpose' => 'FIFA 16',
'amount' => '2500',
'phone' => '9999999999',
'buyer_name' => 'John Doe',
'redirect_url' => 'http://www.example.com/redirect/',
'send_email' => true,
'webhook' => 'http://www.example.com/webhook/',
'send_sms' => true,
'email' => 'foo@example.com',
'allow_repeated_payments' => false
);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($payload));
$response = curl_exec($ch);
curl_close($ch);
echo $response;发布于 2018-11-11 18:37:31
更改此行1
curl_setopt($ch, CURLOPT_URL, 'https://www.instamojo.com/api/1.1/');工作很好。欲知更多详情,请访问请参阅insatamojo-php源树。
https://stackoverflow.com/questions/41995005
复制相似问题