-3

如何在 NodeJS 中处理 Coinbase 回调以接收即时比特币支付通知?

请我需要例子。

注意:我正在使用 SailsJS MVC 框架。

4

1 回答 1

1

好的,根据您的评论,我会试一试。

我假设您拥有(或将拥有)一个 ExpressJs 应用程序。

更新对不起,我刚刚注意到您正在使用sailsjs。以下内容应该仍然有效,但您需要对其进行调整以与sails 路由引擎一起使用。

在您的应用程序中,您需要定义发布路线:

// the app variable is the express js server

// name the route better than this...
app.post('/coinbase', function(req, res){

    var data = req.body;

    var orderId = data.order.id; 

    // etc...      

});
于 2014-08-27T11:29:51.980 回答