Firebase 云函数 Python SDK(公开预览版)
firebase-functions
包提供了一个用于在 Python 中定义 Firebase 云函数的 SDK。
云函数提供了一个托管、私密且可扩展的环境,让您可以运行服务器代码。Firebase 云函数 SDK 通过让您编写能响应事件并调用其他 Firebase 功能所公开的功能的代码,实现了与 Firebase 平台的集成。
了解更多
在 Firebase 文档 中了解更多关于 Firebase 云函数 SDK 的信息,或查看我们的示例。
以下是一些获取帮助的资源:
- 从快速入门开始:https://firebase.google.com/docs/functions/get-started
- 阅读指南:https://firebase.google.com/docs/functions/
- 阅读完整的 API 参考:https://firebase.google.com/docs/reference/functions/2nd-gen/python
- 浏览一些示例:https://github.com/firebase/functions-samples
如果官方文档无法解决您的问题,请通过我们的官方支持渠道寻求帮助:https://firebase.google.com/support/
使用方法
# functions/main.py
from firebase_functions import db_fn
from notify_users import api
@db_fn.on_value_created(reference="/posts/{post_id}")
def new_post(event):
print(f"收到新帖子,ID为:{event.params.get('post_id')}")
return notifyUsers(event.data)
贡献
要贡献更改,请查看贡献指南。
许可证
© Google, 2023. 基于 Apache 许可证 授权。