firebase
E-postverifiering efter registrering
Sök…
Syntax
- Skicka e-postverifiering till inloggad användares e-postadress på fil. Firebase låter dig anpassa vad din e-post innebär
- När e-post träffar användarens e-postkonto klickar användaren på
- Använd din valbara router (används vinkel-ui-router i exemplet ovan), avlyssna parametrar i URL: n.
- Tugga paramerna med
applyCode
i Firebase. - Se nedan för de funktioner som är involverade i ovanstående process.
parametrar
Funktionen... | Har |
---|---|
sendEmailVerification () | Skickar ett verifieringsmeddelande till en användare. |
applyActionCode () | Tillämpar handlingskoden som ändrar e- emailVerified från false till true |
Anmärkningar
Ovanstående sammanfattar ganska mycket hur man använder e-postverifieringsschemat med Firebase. Hittills står det som ett av de enklaste sätten att verifiera e-post som jag har sett.
Det finns lite av en utökad förklaring av exemplet ovan i E-postverifiering med Firebase 3.0 SDK.
Handlingskod för skicka-cum-processverifiering - 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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow