除了Stripe,Paypal国内还能使用哪些海外支付接口

一般叫外卡收单或海外支付,按照支付服务提供商的不同,分成几种模式:

1、国内支付公司提供的外卡收单(国际卡收单)

IPS (环迅支付) http://ips.com.cn

PayEase(首信易支付) http://beijing.com.cn

网银在线(MOTOPAY) http://chinabank.com.cn

ECPSS(汇潮支付) http://ecpss.com

95EPAY(双乾支付) http://95epay.com

以上几家是有第三方支付牌照的。

Yourspay(优仕) http://yourspay.com

Fashionpay(速汇通) http://fashionpay.com

Realypay(日付) http://realypay.com

2、面向全球提供支付服务的公司

Paypal http://paypal.com

GlobalCollect http://globalcollect.com

Payza(AlertPay) http://payza.com

Skrill(MoneyBookers) http://skrill.com

Google Checkout http://checkout.google.com

Worldpay http://worldpay.com

MoneyGram http://moneygram.com

Paydollar http://paydollar.com

Authorize http://authorize.net

CCnow http://ccnow.com

MOL http://mol.com

Perfectmoney http://perfectmoney.com

UKash(预付费卡) http://ukash.com

Paysafecard(预付费卡) http://paysafecard.com

Neteller(预付费卡) http://neteller.com

3、海外本地支付公司(支持本地货币)

欧洲:Trustpay(中欧/东欧)、Sofortbanking(德国)、Giropay(德国)、Teleingreso(西班牙)

大洋洲(澳大利亚/新西兰):POLi、eWAY、Paymate

Przelewy24(波兰)、iDEAL(荷兰)、EPS(奥地利)

俄罗斯:Qiwi、Yandex.Money、WebMoney

中东:CashU、Onecard

东南亚:MOLPay

巴西:Boleto

以上非完整列表,只是罗列了一些常见的支付服务提供商。

具体采用哪一种方案,需要根据自己业务收款场景来确定。

例如:

如果是游戏娱乐类,可以考虑预付费卡模式为主;

如果是外贸,可以考虑Paypal、GlobalCollect(似乎兰亭集势、敦煌网都与其有合作)等;

如果商家集中在某些区域,且需要支持本地货币支付,可以考虑海外本地支付公司;

如果想沟通方便,可以考虑国内支付公司。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,以下是一个简单的使用Python的Tornado框架实现Stripe支付接口的例子: ```python import tornado.ioloop import tornado.web import stripe class PaymentHandler(tornado.web.RequestHandler): def post(self): stripe.api_key = "sk_test_your_secret_key" token = self.get_argument("stripeToken") amount = int(self.get_argument("amount")) description = self.get_argument("description") try: charge = stripe.Charge.create( amount=amount, currency="usd", description=description, source=token, ) self.write("Payment is successful!") except stripe.error.CardError as e: self.write("Card declined: %s" % e) if __name__ == "__main__": app = tornado.web.Application([ (r"/payment", PaymentHandler), ]) app.listen(8888) tornado.ioloop.IOLoop.current().start() ``` 在这个例子中,我们创建了一个名为PaymentHandler的请求处理器,当客户端使用POST方法请求/payment路径时,会触发这个处理器的post方法。在post方法中,我们首先设置了Stripe的API密钥,然后从请求中获取了支付所需的参数,包括支付金额、付款描述和Stripe令牌。最后,我们调用了Stripe的Charge.create方法,创建了一个新的支付,并在支付成功或者失败时返回相应的信息。 需要注意的是,这个例子中的Stripe API密钥是测试密钥,仅用于开发和测试,如果您需要在生产环境中使用Stripe支付接口,请使用生产密钥。 希望这个例子能够帮助您实现Stripe支付接口的调用。如果您还有其他问题,请随时提出。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值