Firebase CLI:如何在POST请求中发送正文?

时间:2019-04-03 17:10:44

标签: firebase google-cloud-firestore google-cloud-functions

以前,我已经能够在Firebase CLI中附加POST请求的正文,但是文档中缺少有关如何再次执行该请求的示例。

示例:

我尝试:

const siteReviews = await Review.countDocuments({
  'clientId': clientObj.ClientBrandID, 
  'siteSource': 'SomeSite', 
  'reviewDate':{
      $gt:"2018-12-24T18:04:47.806Z",
      $lt:"2019-04-03T17:04:47.806Z"
  }
})

但是收到以下错误:

myFunction.post({body: {...}})

我想访问通过TypeError [ERR_INVALID_ARG_TYPE]: The first argument must be one of type string or Buffer. Received type object 传递的数据。有什么想法吗?

1 个答案:

答案 0 :(得分:2)

Found the answer here

就我而言,我会这样做:

myFunction.post().json({...})