当我从url运行firebase函数时,出现此错误:Your client does not have permission to get URL /testing from this server.
,有人可以帮助我为什么我得到此错误吗?在这里,我为此添加了代码
这是我的代码
const express = require('express');
const app = express();
const cors = require('cors');
app.use(cors({ origin: true }));
app.get('/testing', (req, res) => {
res.send({ 'status': 0});
});
exports.widgets = functions.https.onRequest(app);
答案 0 :(得分:0)
导出HTTP类型的函数时,该函数的名称成为URL的一部分。您可能要使用路径/widgets/testing
来调用您的快速路由,因为“小部件”是函数的名称。