Paypal支付的退款refund之getAccessToken
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Paypal支付的退款refund之getAccessToken相关的知识,希望对你有一定的参考价值。
这里仅赘述Paypal的Restful API curl方式的php 代码:
下面这段是PayPal官方给出的命令行下的获取access_token的curl方式:
curl https://api.sandbox.paypal.com/v1/oauth2/token -H "Accept: application/json" \ -H "Accept-Language: en_US" \ -u "EOJ2S-Z6OoN_le_KS1d75wsZ6y0SFdVsY9183IvxFyZp:EClusMEUk8e9ihI7ZdVLF5cZ6y0SFdVsY9183IvxFyZp" \ -d "grant_type=client_credentials"
ps:-H其实就是header,
-u就是用户名和密码
-d就是data数据,需要POST的数据
$ch = curl_init(); $clientId = $this->client_id; $secret = $this->secret; curl_setopt($ch, CURLOPT_URL, "https://api.sandbox.paypal.com/v1/oauth2/token"); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_USERPWD, $clientId.":".$secret); curl_setopt($ch, CURLOPT_POSTFIELDS, "grant_type=client_credentials"); $result = curl_exec($ch); if(empty($result))die("Error: No response."); else { $json = json_decode($result); print_r($json); } curl_close($ch);die;
okay,就可以了!
ps:关于代码里面的client_id和secret是需要创建一个在PayPal开发者网站上创建一个app就会有了,不多陈述,附上PayPal开发者的网址:https://developer.paypal.com/docs/api/
本文出自 “为了以后” 博客,谢绝转载!
以上是关于Paypal支付的退款refund之getAccessToken的主要内容,如果未能解决你的问题,请参考以下文章
alipay.trade.refund (统一收单交易退款接口)[支付宝退款]
关于 payment_status 的帮助 PayPal Refunded Reverted Partial Refunded IPNs