gpt4 book ai didi

php - 无法通过 cURL 连接到 PayPal API

转载 作者:IT王子 更新时间:2023-10-29 00:06:17 24 4
gpt4 key购买 nike

我正在尝试通过“经典”NVP API 设置 PayPal 快速支付。

尝试使用 cURL 从我的服务器连接到 PayPal-Sandbox,连接停止并在大约 2 分钟后超时。

我正在使用 example call来自文档:

curl -v --insecure  https://api-3t.sandbox.paypal.com/nvp  -d  "USER=platfo_1255077030_biz_api1.gmail.com&PWD=1255077037&SIGNATURE=Abg0gYcQyxQvnf2HDJkKtA-p6pqhA1k-KTYE0Gcy1diujFio4io5Vqjf&METHOD=SetExpressCheckout&VERSION=78&PAYMENTREQUEST_0_PAYMENTACTION=SALE&PAYMENTREQUEST_0_AMT=19&PAYMENTREQUEST_0_CURRENCYCODE=USD&cancelUrl=http://www.yourdomain.com/cancel.html&returnUrl=http://www.yourdomain.com/success.html"

外壳输出为:

* About to connect() to api-3t.sandbox.paypal.com port 443 (#0)
* Trying 173.0.82.83... Connection timed out
* couldn't connect to host
* Closing connection #0
curl: (7) couldn't connect to host

当我尝试通过 PHP curl 执行此操作时,我没有收到任何错误,只是一个空的资源句柄。

我可以轻松地从我的本地计算机和我可以访问的其他服务器执行请求(并获取正确的数据),所以我猜这是一些服务器端配置错误。不是服务器人员,我有点无能为力。

cURL 已启用并在 phpinfo 中记录以下内容:

libcurl/7.21.0 OpenSSL/0.9.8o zlib/1.2.3.4 libidn/1.15 libssh2/1.2.6

openSSL 也已启用。此外,我在尝试连接到 API 的实时版本时遇到了同样的问题。

最佳答案

尝试

$ch = curl_init();
# Merchant Account Credentials
$ppUserID = "User Id Email"; //Take it from sandbox dashboard for test mode or take it from paypal.com account in production mode, help: https://developer.paypal.com/docs/classic/api/apiCredentials/
$ppPass = "User Pass"; //Take it from sandbox dashboard for test mode or take it from paypal.com account in production mode, help: https://developer.paypal.com/docs/classic/api/apiCredentials/
$ppSign = "Paypal Sign"; //Take it from sandbox dashboard for test mode or take it from paypal.com account in production mode, help: https://developer.paypal.com/docs/classic/api/apiCredentials/

$ppAppID = "APP-80W284485P519543T"; //if it is sandbox then app id is always: APP-80W284485P519543T

$paypal_header_options = array();
$paypal_header_options[] = "X-PAYPAL-SECURITY-USERID: $ppUserID";
$paypal_header_options[] = "X-PAYPAL-SECURITY-PASSWORD: $ppPass";
$paypal_header_options[] = "X-PAYPAL-SECURITY-SIGNATURE: $ppSign";
$paypal_header_options[] = "X-PAYPAL-REQUEST-DATA-FORMAT: NV";
$paypal_header_options[] = "X-PAYPAL-RESPONSE-DATA-FORMAT: NV";
$paypal_header_options[] = "X-PAYPAL-APPLICATION-ID: $ppAppID";

$URL = 'https://api-3t.sandbox.paypal.com/nvp'
.'?USER='.$ppUserID
.'&PWD='.$ppPass
.'&SIGNATURE='.$ppSign
.'&METHOD=SetExpressCheckout'
.'&VERSION=93'
.'&RETURNURL=https://localhost/express-checkout-single-product/success.php?success=true'
.'&CANCELURL=https://localhost/express-checkout-single-product/index.php'
.'&PAYMENTREQUEST_0_CURRENCYCODE=USD'
.'&PAYMENTREQUEST_0_AMT=250.00' #The payment amount for the first receiver # Merchant(Primary AC) Account Amount
.'&PAYMENTREQUEST_0_ITEMAMT=225.00' # Merchant(Primary AC) Account Email
.'&PAYMENTREQUEST_0_TAXAMT=25.00' #Receiver designation (there can be only 1 primary receiver)
.'&PAYMENTREQUEST_0_PAYMENTACTION=Order'
.'&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=email'
.'&PAYMENTREQUEST_0_PAYMENTREQUESTID=CART110-PAYMENT0' #The payment amount for the second receiver # Seller(Secondry AC) Account Amount
.'&PAYMENTREQUEST_1_CURRENCYCODE=USD'
.'&PAYMENTREQUEST_1_AMT=75.00' #The payment amount for the first receiver # Merchant(Primary AC) Account Amount
.'&PAYMENTREQUEST_1_ITEMAMT=65.00' # Merchant(Primary AC) Account Email
.'&PAYMENTREQUEST_1_TAXAMT=10.00' #Receiver designation (there can be only 1 primary receiver)
.'&PAYMENTREQUEST_1_PAYMENTACTION=Order'
.'&PAYMENTREQUEST_1_SELLERPAYPALACCOUNTID=email'
.'&PAYMENTREQUEST_1_PAYMENTREQUESTID=CART110-PAYMENT1'
.'&L_PAYMENTREQUEST_0_NAME0=Departs2'
.'&L_PAYMENTREQUEST_0_NAME0=Sunset'
.'&L_PAYMENTREQUEST_0_QTY0=1'
.'&L_PAYMENTREQUEST_0_AMT0=125'
.'&L_PAYMENTREQUEST_0_TAXAMT0=15'
.'&L_PAYMENTREQUEST_0_NAME1=Departs'
.'&L_PAYMENTREQUEST_0_QTY1=1'
.'&L_PAYMENTREQUEST_0_AMT1=100.00'
.'&L_PAYMENTREQUEST_0_TAXAMT1=10.00';
curl_setopt($ch, CURLOPT_URL, $URL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// curl_setopt($ch, CURLOPT_HTTPHEADER, $paypal_header_options);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

$paypal_response = curl_exec($ch);

$responseAr = explode('&', $paypal_response);
$parsedResponseAr = array();
foreach($responseAr as $i => $value) {
$tmpAr = explode('=', $value);
if(!empty($tmpAr))
$parsedResponseAr[strtoupper($tmpAr[0])] = urldecode($tmpAr[1]);
}
print_r(json_encode($parsedResponseAr));
curl_close($ch);

关于php - 无法通过 cURL 连接到 PayPal API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15344742/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com