Exemplo n.º 1
0
 //[Test]
 public async Task RequestSMS()
 {
     await LCSMSClient.RequestSMSCode(TestPhone,
                                      template : "test_template",
                                      signature : "flutter-test",
                                      variables : new Dictionary <string, object> {
         { "k1", "v1" }
     });
 }
Exemplo n.º 2
0
 public async Task Verify()
 {
     await LCSMSClient.VerifyMobilePhone(TestPhone, TestSMSCode);
 }
Exemplo n.º 3
0
 //[Test]
 public async Task RequestVoice()
 {
     await LCSMSClient.RequestVoiceCode(TestPhone);
 }