コード例 #1
0
ファイル: TokenService.cs プロジェクト: test-see/csdd
        public async Task <string> GenerateVerificationCodeAsync(string phone)
        {
            var code = await _tokenContext.GenerateVerificationCodeAsync(phone);

            await _smsSendRequest.SendVerificationCodeAsync(new string[] { phone }, code);

            return(code);
        }