0

我正在构建一个烧瓶应用程序,该应用程序在firebase authusing中创建用户帐户pyrebase

@app.route('/verify_email')
def verify_email(self):
    end = time.time()
    start = self.start
    if end-start > 1800:
        # delete user
    else:
        return render_template('email_verification.html')

在这里,我将删除任何未在 30 分钟内验证电子邮件的用户。

4

1 回答 1

1

我在旧版本的 README 中发现了这一点:

auth = firebase.auth()
user = auth.sign_in_with_email_and_password(email, password)
auth.delete_user_account(user['idToken'])
于 2021-04-06T12:18:00.063 回答