如果我使用express.js在函数中定义https端点,是否可以通过httpsCallable(与angularFire2)调用我的Firebase函数?简单的例子:
const app = express()
app.get("/test", (request, response) => {
response.send("Hello from Express on Firebase!")
});
export const api1 = functions.https.onRequest(app)
如何从我的
调用/ test尝试:
this.afFunctions.httpsCallable('api1/test');
结果: HTTP错误错误:找不到
(尽管在控制台日志中该网址看起来不错。
尝试:
this.afFunctions.httpsCallable('api1');
结果: HTTP错误错误:内部