带express.js httpCallable的Firebase函数

时间:2019-02-14 00:13:43

标签: firebase express google-cloud-functions angularfire

如果我使用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错误错误:内部

0 个答案:

没有答案