firebase
E-mailverificatie na aanmelding
Zoeken…
Syntaxis
- Verzend e-mailverificatie naar het geregistreerde e-mailadres van de gebruiker in het bestand. Met Firebase kunt u aanpassen wat uw e-mail inhoudt
- Wanneer e-mail het e-mailaccount van de gebruiker raakt, klikt de gebruiker op
- Gebruik uw favoriete router (gebruikte angular-ui-router in bovenstaand voorbeeld) om parameters in de URL te onderscheppen.
- Kauw de params met behulp van de
applyCode
functie in Firebase. - Zie hieronder voor de functies die betrokken zijn bij het bovenstaande proces.
parameters
De functie... | Doet |
---|---|
sendEmailVerification () | Stuurt een verificatie-e-mail naar een gebruiker. |
applyActionCode () | Past de actiecode toe die e-mail verandert. emailVerified van false naar true |
Opmerkingen
Het bovenstaande geeft vrij veel weer hoe het e-mailverificatieschema met Firebase moet worden gebruikt. Tot dusverre is het een van de eenvoudigste manieren om e-mail te verifiëren die ik heb gezien.
Er is een beetje een uitgebreide uitleg van het bovenstaande voorbeeld beschikbaar op e-mailverificatie met Firebase 3.0 SDK.
Send-cum-Process Verification Action Code - AngularJS
// thecontroller.js
$scope.sendVerifyEmail = function() {
console.log('Email sent, whaaaaam!');
currentAuth.sendEmailVerification();
}
// where currentAuth came from something like this:
// routerconfig
....
templateUrl: 'bla.html',
resolve: {
currentAuth:['Auth', function(Auth) {
return Auth.$requireSignIn() // this throws an AUTH_REQUIRED broadcast
}]
}
...
// intercept the broadcast like so if you want:
....
$rootScope.$on("$stateChangeError", function(event, toState, toParams, fromState, fromParams, error) {
if (error === "AUTH_REQUIRED") {
$state.go('login', { toWhere: toState });
}
});
....
// So user receives the email. How do you process the `oobCode` that returns?
// You may do something like this:
// catch the url with its mode and oobCode
.state('emailVerify', {
url: '/verify-email?mode&oobCode',
templateUrl: 'auth/verify-email.html',
controller: 'emailVerifyController',
resolve: {
currentAuth:['Auth', function(Auth) {
return Auth.$requireSignIn()
}]
}
})
// Then digest like so where each term is what they sound like:
.controller('emailVerifyController', ['$scope', '$stateParams', 'currentAuth', 'DatabaseRef',
function($scope, $stateParams, currentAuth, DatabaseRef) {
console.log(currentAuth);
$scope.doVerify = function() {
firebase.auth()
.applyActionCode($stateParams.oobCode)
.then(function(data) {
// change emailVerified for logged in User
toastr.success('Verification happened', 'Success!');
})
.catch(function(error) {
$scope.error = error.message;
toastr.error(error.message, error.reason, { timeOut: 0 });
})
};
}
])
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow