在云函数中使用Firestore时,如何使用特性?
基本上,在云函数中使用了一个新的Firestore查询之后,应该在哪里找到
更新:根据注释建议添加示例代码
假设以前没有使用下面的查询。在我将函数部署到云函数并使用它之后,在哪里可以找到自动创建的创建缺失索引的链接?
import * as admin from 'firebase-admin';
import * as functions from 'firebase-functions';
admin.initializeApp(functions.config().firebase);
const d
这个python脚本的目的是从google分析中提取数据,并将其添加到google MySQL数据库中。该脚本在我的本地机器上工作,但在google函数上不起作用:
from apiclient.discovery import build
from oauth2client.service_account import ServiceAccountCredentials
import mysql.connector
from datetime import datetime
from datetime import timedelta
import os
from mysql.connect
我有一个云函数(fce_a),我需要从同一个GCP项目和区域中的另一个云函数(fce_b)调用它。当我将fce_a设置为Allow all traffic (在Ingress settings中)时,它可以完美地工作(使用this method)。但是,当我将fce_a设置为Allow internal traffic only (在Ingress settings中)时,我得到的是Error 403 (Forbidden) 403. That's an error. Access is forbidden. That's all we know. (提到的here)。 我尝