在Google App Engine上验证Python脚本以使用Google Firebase,您可以按照以下步骤进行操作:
pip install firebase-admin
import firebase_admin
from firebase_admin import credentials
cred = credentials.Certificate('path/to/serviceAccountKey.json')
firebase_admin.initialize_app(cred)
在上述代码中,您需要将path/to/serviceAccountKey.json
替换为您的Firebase项目的服务帐号密钥的路径。
from firebase_admin import db
ref = db.reference('/')
ref.child('users').push({
'name': 'John',
'age': 30
})
在上述代码中,ref.child('users').push()
将数据写入到Firebase数据库中的/users
节点下。
gcloud app deploy
部署完成后,您的Python脚本将能够使用Google Firebase服务。
请注意,以上步骤仅适用于Google App Engine和Google Firebase的集成。如果您需要在其他云计算平台上验证Python脚本以使用Google Firebase,您需要参考该平台的文档和指南。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云