发布于 2014-11-27 11:16:50 | 1462 次阅读 | 评论: 0 | 来源: 网友投递
PayPal 在线支付
PayPal(在中国大陆的品牌为贝宝),1998年12月由 Peter Thiel 及 Max Levchin 建立。 是一个总部在美国加利福尼亚州圣荷西市的因特网服务商,允许在使用电子邮件来标识身份的用户之间转移资金,避免了传统的邮寄支票或者汇款的方法。PayPal也和一些电子商务网站合作,成为它们的货款支付方式之一;但是用这种支付方式转账时,PayPal收取一定数额的手续费。
本文为大家讲解的是paypal即时到账接口php实现代码,做电商系统的同学参考下。
http://paypal.ebay.cn/integrationcenter/list__resource_2.html
中文php开发简介:http://www.paypal-china.org/wangzhai/197.html
以下是ecshop中paypal的支付代码
这段代码是向paypal支付接口提交的
{{{
<form target="_blank" method="post" action="https://www.paypal.com/cgi-bin/webscr" style="text-align: center;"><input type="hidden" value="_xclick" name="cmd"/><input type="hidden" value="xfuajiao@hotmail.com" name="business"/> //商家注册的邮箱
<input type="hidden" value="2009102370175" name="item_name"/><input type="hidden" value="2888.00" name="amount"/><input type="hidden" value="USD" name="currency_code"/><input type="hidden" value="http://127.0.0.1/ecshop/respond.php?code=paypal" name="return"/><input type="hidden" value="3" name="invoice"/><input type="hidden" value="utf-8" name="charset"/><input type="hidden" value="1" name="no_shipping"/><input type="hidden" value="" name="no_note"/><input type="hidden" value="http://127.0.0.1/ecshop/respond.php?code=paypal" name="notify_url"/><input type="hidden" value="2" name="rm"/><input type="hidden" value="http://127.0.0.1/ecshop/" name="cancel_return"/><input type="submit" value="立即使用 paypal 支付"/></form>
}}}
以下是官方提供的,接受到paypal传回来的参数的,并且判断是否支付成功。
支持成功后由于提交表单中有
<input type="hidden" value="http://127.0.0.1/ecshop/respond.php?code=paypal" name="return"/>
paypal将会主动跳转到espond.php?code=paypal这个页面,页面可现实以下POST得到的一些数据。