示例#1
0
        public static string LoginSMS(string phone_number, string otp_code)
        {
            string refresh_token = OperationsLL.ValidateOTP(phone_number, otp_code).data.refresh_token;
            string x_auth_token  = OperationsLL.LoginSMS(refresh_token).data.api_token;

            NET.AuxInfo.HeadersAuthUpdate(x_auth_token);
            return(x_auth_token);
        }
示例#2
0
 public static void RequestOTP(string phone_number)
 {
     OperationsLL.RequestOTP(phone_number);
 }