【发布时间】:2014-06-23 15:33:54
【问题描述】:
我正在使用平衡支付与我的网站进行转账,但遇到了问题,我在我的编程语言中使用 PHP Curl 代码,但我没有收到任何类型的哦,对我的问题有希望的回应。
我的 Curl 代码如下所示。
$url = "https://api.balancedpayments.com/v1/marketplaces/TEST-MP1K1dZWDLVf3nIfthUpaROF/";
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,'key=xxxxxxxxxxxxxxxxxxxxxx&amount=5000&description=Some descriptive text for the debit in the dashboard');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);
这个“钥匙”是隐藏的购买安全原因。
如果有人可以解决我的问题,请与我联系,我的电子邮件是 ishansourabhjain@hotmail.com。
感谢和问候, 伊山·S·耆那教
【问题讨论】:
-
您得到什么回应,您期望发生什么?
-
@Alex 您应该通过电子邮件联系 (-:
标签: php curl balanced-payments