如何在回叫中实施Firebase设置请求

时间:2019-06-04 18:24:00

标签: node.js firebase asynchronous google-cloud-firestore google-cloud-functions

我是Node js的新手,我想在回调函数内将信息写入Firebase数据库。

我一直在搜索,似乎回调是异步的。如何在此回调中使用firestore?

    exports.registerRestaurantPayout = functions.firestore.document('*********')
  .onCreate(async (paymentSnap, context) => {

    var request = require('request');

    var authCode = paymentSnap.data().auth_code;
    var firstString = 'client_secret=********&code=';
    var secondString = '&grant_type=authorization_code';
    var dataString = firstString + authCode + secondString;

    var options = {
        url: 'https://connect.stripe.com/oauth/token',
        method: 'POST',
        body: dataString
    };

    function callback(error, response, body) {
        if (!error && response.statusCode === 200) {
            console.log(body);

            return await firestore.document('***********')
              .set({'account': body}, {merge: true});
            //return await paymentSnap.ref.set({'account': body}, {merge: true});
        }else{


            //return await paymentSnap.ref.set({'error' : error}, { merge: true });
        }
    }

    request(options, callback);

  });

我收到以下错误解析错误:即使我可以在回调外部使用firestore,也出现了意外的令牌firestore。具体的问题是回调中的return语句

1 个答案:

答案 0 :(得分:2)

在Cloud Function中,您应该使用Promise处理异步任务(例如对条带API的HTTP调用或对实时数据库的写入)。默认情况下,request不返回promise,因此您需要使用接口包装程序来进行请求,例如request-promise,并按照以下内容修改代码:

const rp = require('request-promise');

exports.registerRestaurantPayout = functions.firestore.document('*********')
 .onCreate((paymentSnap, context) => {

   var authCode = paymentSnap.data().auth_code;
   var firstString = 'client_secret=**********=';
   var secondString = '&grant_type=authorization_code';
   var dataString = firstString + authCode + secondString;


   var options = { 
     method: 'POST',
     uri: 'https://connect.stripe.com/oauth/token',
     body: dataString,
     json: true // Automatically stringifies the body to JSON
   };

   return rp(options)
   .then(parsedBody => {
       return paymentSnap.ref.set({'account': parsedBody}, {merge: true});
   })
   .catch(err => {
       return paymentSnap.ref.set({'error' : err}, { merge: true });
   });

});

我还建议您观看Firebase团队的以下两个“必看”视频,内容涉及云功能和承诺:https://www.youtube.com/watch?v=7IkUgCLr5oAhttps://www.youtube.com/watch?v=652XeeKNHSk