如何在Firebase中有条件地设置REDIRECT_URI

时间:2019-02-10 21:19:24

标签: firebase google-cloud-functions

我正在Firebase上配置身份验证功能以对用户进行身份验证。 在运行localhost时,我设置了以下内容:

const OAUTH_REDIRECT_URI = `http://localhost:4200/callback`

在生产环境中,我需要调用https://mywebsite.com而不是localhost的函数。 我该如何设置?

1 个答案:

答案 0 :(得分:1)

您可以configure some variables与该功能一起部署,并且可以针对每个项目进行更改。然后可以在运行时访问它们。

在命令行上设置它们:

firebase functions:config:set auth.uri="..."

然后通过代码访问它:

functions.config().auth.uri