Google Cloud Functions是一种轻量级,基于事件的异步计算解决方案,允许您创建以Node.js,Python或Go编写的小型单一用途函数,这些函数可响应云事件,而无需管理服务器或运行时环境。
无法部署检查 Twitch 频道状态的 Firebase 云功能
我在 Firebase 中使用 Cloud Functions 后端实现了以下功能。因为,我希望能够将我的 Twitch API 令牌放在环境变量中,因为前端是纯 HTM...
Firebase Cloud Functions 缺少构建服务帐户的权限
要将 NodeJS(第二代)云函数部署到 Firebase 项目,我使用 firebase deploy —-only 函数命令。以下是代码库。 从“firebase-
如何让Function只触发onCreate和onUpdate?
我希望仅在创建和更新文档时触发云功能。我不希望 Cloud Function 触发 onDelete。 是否有任何触发器仅 onCreate 和 onUpdate 而没有使 2 个单独的乐趣......
我创建了一个云运行功能来将firestore同步到meilisearch。由 google.cloud.firestore.document.v1.writing 触发的函数通过 firestore 进行了良好的身份验证,然后尝试使用(部分...
如何查看通过云功能发送的 Firebase Cloud Messaging 通知?
我目前正在使用 Firebase Cloud Functions 通过 Firebase Cloud Messaging (FCM) 发送通知。通知已成功发送,云功能中的日志已确认并且...
如何在 Firebase Cloud Functions 中配置 Stripe 密钥?
我正在尝试将Stripe集成到我的一个项目中,看起来我可以在我的云功能上做到这一点。我正在遵循这个官方指南,它告诉我将 API 密钥添加到我的 firebase 配置中。
如何在 Google Cloud Function 中获取原始请求正文?
我需要原始请求主体能够对其进行 SHA-1 消化,以验证随请求一起传递到我的 Firebase 函数(在 Google Cloud 上运行)的 Facebook webhook X-Hub-Signature 标头
真的很短,但我正在尝试将Stripe集成到我的项目中,看起来我可以在我的云功能上做到这一点。我正在遵循这个官方指南,它告诉我将 API 密钥添加到我的
进行 Firebase 部署时维基百科 Python 库无法工作
我正在尝试让Python的维基百科库在谷歌云中工作。当我尝试部署 firebase 函数时,出现“没有名为‘wikipedia’的模块”错误。 [2024-11-20 15:32:31,620]
将 http Google Cloud 功能“需要身份验证”与 Firebase 结合使用
在我的前端,我使用 Firebase 身份验证和 firebaseAuth.currentUser?.getIdToken(true) 函数来获取令牌并将其作为 Authorization: Bearer {token} 标头发送到 Goo...
通过私有端点将 Google Cloud Functions 连接到 MongoDB Atlas
我花了整整两周的时间阅读文档,但我仍然无法通过私有端点将 Google Cloud Functions 连接到 MongoDB Atlas。 我得到的错误是超时错误(未处理的错误
Firestore 云功能 - 每次将文档添加到不同集合(而不是“用户”)时,我可以向用户发送电子邮件吗?
我对云功能非常陌生,但已经设置了几个 Firestore 云功能,并让它们在创建或更新用户文档时向个人发送电子邮件,但我真的...
我有一个 flutter 应用程序,现在我需要在我的应用程序中接受付款,并且我想检查付款是否是通过使用 firebase 函数进行的,但我不断收到未经验证的错误。 我已经添加了...
无法让firebase应用程序使用python的Flask部署简单的请求
我有以下 main.py firebase 函数,我正在尝试使用 firebase deploy 进行部署但是当我卷曲 firebase 端点时,出现 404 错误: 卷曲-v https://us-central1- 我有以下 main.py firebase 函数,我正在尝试使用它进行部署 firebase deploy 但是当我卷曲 firebase 端点时,我收到 404 错误: curl -v https://us-central1-<project-id>.cloudfunctions.net/test 这是我部署的功能: from firebase_admin import initialize_app, db from firebase_functions import https_fn import flask initialize_app() app = flask.Flask(__name__) print("TEST APP") @app.get('/test') def hello_world(): print('Hello World') return 'Hello, Firebase Cloud Functions with Python' 当我通过输入此命令在本地运行该函数时 flask --app main run 我能够到达此端点,但当我卷曲 firebase 端点时却无法到达。如有任何帮助,我们将不胜感激。 更新:当我进入 Google Cloud Console 时,没有显示任何功能。我想肯定是部署有问题。当我输入:firebase -P staging deploy --only functions 我得到以下输出: (node:25815) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead. (Use `node --trace-deprecation ...` to show where the warning was created) === Deploying to '<progject-id>'... i deploying functions i functions: preparing codebase cancer-hacked for deployment i functions: ensuring required API cloudfunctions.googleapis.com is enabled... i functions: ensuring required API cloudbuild.googleapis.com is enabled... i artifactregistry: ensuring required API artifactregistry.googleapis.com is enabled... ✔ functions: required API cloudfunctions.googleapis.com is enabled ✔ artifactregistry: required API artifactregistry.googleapis.com is enabled ✔ functions: required API cloudbuild.googleapis.com is enabled i functions: Loading and analyzing source code for codebase cancer-hacked to determine what to deploy * Serving Flask app 'serving' * Debug mode: off WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. * Running on http://127.0.0.1:8081 Press CTRL+C to quit 127.0.0.1 - - [15/Nov/2024 14:55:25] "GET /__/functions.yaml HTTP/1.1" 200 - 127.0.0.1 - - [15/Nov/2024 14:55:25] "GET /__/quitquitquit HTTP/1.1" 200 - /bin/sh: line 1: 25820 Terminated: 15 python3.11 "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/firebase_functions/private/serving.py" i functions: cleaning up build files... ✔ Deploy complete! Project Console: https://console.firebase.google.com/project/cancer-hacked/overview 我发现我缺少使用 python 的 Flask 库让 firebase 云功能工作的功能。我必须注册 Flask 应用程序才能使用 https_fn 包装器。这是现在在执行 firebase deploy 时可以使用的代码 import firebase_admin from firebase_admin import credentials, firestore from flask import Flask, request from firebase_functions import https_fn from cancer import get_cancer # Initialize Firebase Admin SDK cred = credentials.Certificate("serviceAccountKey.json") firebase_admin.initialize_app(cred) db = firestore.client() app = Flask(__name__) @app.route('/test', methods=['GET']) def test(): print("Hello World") return "Hello World" # Main entry point for Firebase Functions #firebase_function = functions.https.on_request(app) @https_fn.on_request() def functions(req: https_fn.Request) -> https_fn.Response: with app.request_context(req.environ): return app.full_dispatch_request() 您可以在以下 Firebase 文档中找到更多文档: https://firebase.google.com/docs/functions/http-events?gen=2nd 然后您可以通过访问 curl -v https://us-central1-<project-id>.cloudfunctions.net/functions/test来访问测试端点
Firebase Cloud Functions 错误 - Cloud Runtime Config 当前遇到问题,这导致您的函数无法部署
我已经寻找这个特定答案的答案两天了,但没有运气。 我按照他们的要求更新了 Firebase CLI,然后它与我的 NodeJS 不兼容,所以我必须更新...
如何将 Kaggle api 密钥包含到 google 云函数中以便 Kaggle api 可以找到它?
我正在尝试编写一个谷歌云函数,该函数自动从某个kaggle数据集下载数据并将其上传到谷歌云存储桶。无论我如何尝试包含我的 Kaggle api 密钥...
根据Firebase文档,从.env加载环境变量。部署函数时应打印到控制台。我的函数导出到 src/functions/functions....
Firestore onDocumentWritten 触发器未在使用节点的 Cloud Functions 中进行文档写入时触发
我正在构建一个 Firebase 项目,每当在特定 Firestore 集合中创建文档时,我都需要运行云函数。我将 Node.js 与 Firebase Admin SDK 结合使用并已设置
无法从 Firebase Functions (v2) 向 Google Slides API 进行身份验证
我需要使用内置(或其他)服务帐户,而不是登录 Firebase 的应用程序用户,从我的 Firebase 功能访问 Slides API。我已确保服务帐户有
配置 CORS 以允许来自任何来源的请求来解决之前的 CORS 问题后,我不再收到 CORS 错误,但现在在发出 POST 请求时会出现 404 错误。我检查了网址mu...