gpt4 book ai didi

javascript - 错误 : admin is not defined using HTTP request with Cloud Functions for Firebase

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:40:54 25 4
gpt4 key购买 nike

我刚刚为 Firebase 配置了我的第一个 Cloud Functions,在部署 index.js 文件并将所有更改上传到我的服务器之后。我正在尝试使用我的一个函数,这是一个简单的 HTTP 请求,用于在我的 Firebase 数据库中的表上创建一个字段:

const functions = require('firebase-functions');

exports.addMessage = functions.https.onRequest((req, res) => {
// Grab the text parameter.
const original = req.query.text;
// Push it into the Realtime Database then send a response
admin.database().ref('/messages').push({ original: original }).then(snapshot => {
// Redirect with 303 SEE OTHER to the URL of the pushed object in the Firebase console.
res.redirect(303, snapshot.ref);
});
});

但是当我在我的浏览器上调用我的请求时,我在我的 Functions 控制台上收到一个错误,提示 admin is not defined:

enter image description here

可能导致此错误的原因是什么?

最佳答案

您需要像导入 Cloud Functions SDK 一样导入 Admin SDK 模块:

const functions = require('firebase-functions');

const admin = require('firebase-admin');
admin.initializeApp();

可以找到示例代码here .这也包含在 "get started" guide 中。 .

关于javascript - 错误 : admin is not defined using HTTP request with Cloud Functions for Firebase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43481830/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com