firebase
サインアップ後のメールの確認
サーチ…
構文
- ファイルに記録されたユーザーの電子メールアドレスに電子メールの確認を送信します。 Firebaseでは、電子メールの内容をカスタマイズすることができます
- 電子メールがユーザーの電子メールアカウントにヒットすると、ユーザーは
- 上記の例では、使用しているルータのangle-ui-routerを使用して、URLのパラメータを代行受信します。
- Firebaseの
applyCode
関数を使用してapplyCode
ます。 - 上記のプロセスに関わる機能については、以下を参照してください。
パラメーター
関数... | ありますか |
---|---|
sendEmailVerification() | ユーザーに確認メールを送信します。 |
applyActionCode() | emailVerified をfalse からtrue 変更するアクションコードを適用しtrue |
備考
上記は、Firebaseで電子メールの検証スキームを使用する方法を概説しています。これまでのところ、それは私が見た電子メールを確認する最も単純な方法の一つとして立っています。
Firebase 3.0 SDKを使用したEmail Verificationには上記の例の説明があります。
Send-cum-Process検証アクションコード - 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
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow