大家好,我们正在构建一个具有快速、节点和防火墙云功能的restAPI,它正在成功地从我的集合中返回文档。但是我的问题是返回每个文档创建为JSON的日期,但是无法将时间戳日期转换为javascript日期……这是我的清晰代码:
// Single report route that accepts a report ID and return the report
app.get('/report/:id', async (req, res) => {
try {
let report;
const reportDoc = await admin.fir
我有一个云函数调用,如下所示:
client = googleapiclient.discovery.build('firestore', 'v1beta1')
client.projects().databases().exportDocuments(name=name, body=body).execute()
由于身份验证错误,它正在崩溃:
HttpError 403 "The caller does not have permission"
当使用Pub/Sub触发云功能时会崩溃。但是,如果我从运行相同的代码,它就能工作。
我的问题是: