如何处理NodeJS中的Coinbase回调以接收即时比特币支付通知?
请我需要例子。
注意:我正在使用Sails JS MVC Framework。
答案 0 :(得分: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...
});