没有为当前项目配置或授权提供的动态链接域

时间:2019-04-08 01:35:28

标签: node.js firebase firebase-authentication google-cloud-functions

我的目标是使用Firebase功能和身份验证向注册用户发送电子邮件。 我关注了Firebase example。 但这会显示以下错误消息。

  

未配置或未授权提供的动态链接域   当前项目

我的代码在下面。

class ONE:
    def out(self):
        if final_issues:
            print(final_issues)
            final_issues_copy = final_issues[:]
            final_issues.clear()
            return final_issues_copy

这是我在控制台上的配置。

enter image description here

1 个答案:

答案 0 :(得分:1)

example.page.link未配置为项目的动态链接域。

您需要使用自己的一个。您可以从Firebase控制台左侧菜单中的“增长”下的“动态链接”中获取该信息。

如果您不需要在移动流中使用动态链接,只需更改为:

const actionCodeSettings = {
  // Replace this URL with the URL where the user will complete sign-in.
  url: 'https://www.example.com/finishSignUp?cartId=1234',
  handleCodeInApp: true
};