重置密码时将用户重定向到iOS应用程序

时间:2019-05-04 14:26:29

标签: ios swift firebase firebase-authentication

当前,我正在触发密码重置,如下所示:

  static func firebasePasswordReset(email:String, responseError:@escaping (ResponseError?)->Void, completion:@escaping (
        String)->Void){

        Auth.auth().sendPasswordReset(withEmail: email) { (error) in
            if(error != nil){
              responseError(ResponseError.custom(error?.localizedDescription ?? "Unknow error occured. Please try again."))
            }else{
                completion(NSLocalizedString("Password reset link sent. Please check \(email).", comment: ""))
            }
        }
    }

尽管一切正常,并且已发送到相应电子邮件的链接,但用户会获得我在Firebase控制台中为我的网站设置的链接。

它是https://myprojectname/reset-password.html页。

现在,对于iOS用户,我不希望他们去网站重设密码。我想将他们重定向到应用程序,然后在其iOS应用程序中打开一个表单。这可能吗?

1 个答案:

答案 0 :(得分:2)

1- AppDelegate

func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([Any]?) -> Void) -> Bool {
        if let url = userActivity.webpageURL {
            if url.path.range(of: "/reset-password.html") != nil {
                if let passwordToken = url.getQueryItemValueForKey("token") {
                    let resetPasswordController= ResetPasswordController()
                    resetPasswordController?.passwordToken = passwordToken
                    self.window?.rootViewController = resetPasswordController
                    self.window?.makeKeyAndVisible()
                }
            }
        }

        return true
    }

2-将您的域添加到授权的关联域中。

<key>com.apple.developer.associated-domains</key>
<array>
    <string>applinks:www.yourdomain.com</string>
    <string>applinks:yourdomain.com</string>
</array>

enter image description here

3-创建apple-app-site-association文件

创建一个apple-app-site-association文件,其MIME类型为json,但没有文件扩展名。 YOUR_APP_ID类似于XXXXXXX.com.mycompany.projectname

并确保必须通过content-type的{​​{1}}通过公共https://yourdomain.com/apple-app-site-association进行访问

application/json

更新:您还必须为{ "applinks": { "apps": [], "details": [ { "appID": "YOUR_APP_ID", "paths": [ "/reset-password.html*" ] } ] } 文件提供https。 https://developer.apple.com/library/archive/documentation/General/Conceptual/AppSearch/UniversalLinks.html

4-在电子邮件中,链接应包含一个密码令牌,类似这样

apple-app-site-association

5-决赛

在您的<a href="http://yourdomain.com/reset-password.html?token=BLABLABLABLABLABLABAL">Reset Your Password</a> 中创建一个密码重置表单,

方法一:当用户提交表单时,将ResetPasswordController发送到您的服务器。检查令牌是否存在等。从您的API返回true或false。

方法二:通过API检查令牌是否存在,然后显示您的重置表单。