您建议在MeteorJS上使用哪种支付服务?

时间:2015-07-20 01:10:12

标签: meteor

我正在寻找一些与Meteor有很好的API集成的东西。我需要一些简单的东西,我可以“发送”金额,然后确认付款已经完成。

任何有关良好客户支持的建议也值得赞赏。

谢谢!

PS:Stripe看起来很有趣。

2 个答案:

答案 0 :(得分:0)

我会推荐Stripe。它们具有出色的分析能力,极其简单的定价,并且非常易于集成。

这就是Stripe成为引人注目的选择的原因:http://stackshare.io/stripe

此软件包是目前集成Stripe的最佳方式。

https://atmospherejs.com/copleykj/stripe-sync

Stripe = StripeSync(key);

try {
    var account = Stripe.account.retrieve()
} catch(error) {
    throw new Meteor.Error(1001, error.message);
}

答案 1 :(得分:0)

我也推荐Stripe。这是我创建的一个包,它从@ copleykj的可爱包中大量借用:

https://atmospherejs.com/hpp/stripe-makesync

该软件包是最新的,因为它直接从最新的Stripe npm软件包和Stripe本身的客户端方法获取服务器方法。

我认为有一件事可以在copleykj:stripe-sync中得到改善。它使用Meteor的wrapAsync方法,该方法不会返回错误,我个人不喜欢以try/catch样式编码:

https://github.com/meteor/meteor/issues/2774

这是我的第二个包#34;修复"这个问题:

https://atmospherejs.com/hpp/makesync

据我所知,所有其他Stripe软件包也没有返回正确的Stripe错误,这对于像Stripe这样的东西非常重要,因为错误经常发生,你必须知道Stripe会给你带来什么样的错误所以你可以处理它。

编辑:

您可以查看我关于Meteor错误处理的其他帖子:

Dealing with Meteor.Error and .wrapAsync() - best methods?