当前,我正在触发密码重置,如下所示:
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应用程序中打开一个表单。这可能吗?
答案 0 :(得分:2)
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
}
<key>com.apple.developer.associated-domains</key>
<array>
<string>applinks:www.yourdomain.com</string>
<string>applinks:yourdomain.com</string>
</array>
创建一个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
apple-app-site-association
在您的<a href="http://yourdomain.com/reset-password.html?token=BLABLABLABLABLABLABAL">Reset Your Password</a>
中创建一个密码重置表单,
方法一:当用户提交表单时,将ResetPasswordController
发送到您的服务器。检查令牌是否存在等。从您的API返回true或false。
方法二:通过API检查令牌是否存在,然后显示您的重置表单。