短信验证码服务是一种通过向用户手机发送验证码来验证用户身份的方式,对于移动应用程序来说是保障用户身份真实性和安全性、增强用户体验、防止欺诈行为的重要手段之一
本文介绍如何快速在移动APP中接入短信验证码服务
选择一个合适的短信服务提供商或者短信网关,根据服务商资质和信誉,覆盖范围和网络质量、价格和计费方式、接口文档和技术支持 多方面考虑
这里我选择中昱维信的短信服务,该平台直连运营商的验证码短信通道,1-3秒快速到达用户手机,速度快,价格低,测试方便。
注册并登录短信平台,然后获取AppID和AppKey。
创建验证码模版,获取验证码模版id
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class SmsVerification {
public static void main(String[] args) {
// 接收验证码的11位手机号
String phone = "131********";
// 验证码模版id
String templateId = "100001";
// appId
String appId = "YOUR_APP_ID";
// appKey
String appKey = "YOUR_APP_KEY";
// 验证码,4-8位随机数字
String variables = "123456";
// API地址
String apiUrl = "https://vip.veesing.com/smsApi/verifyCode";
try {
URL url = new URL(apiUrl + "?phone=" + phone + "&templateId=" + templateId + "&appId=" + appId + "&appKey=" + appKey + "&variables=" + variables);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
StringBuilder response = new StringBuilder();
String line;
while ((line = rd.readLine()) != null) {
response.append(line);
}
rd.close();
// 解析短信服务的响应response,根据返回结果判断是否发送成功
// 成功{"returnStatus":"1 ","message":"成功","remainPoint":"241","taskId":"3313746","successCounts":"1"}
// 失败{"returnStatus":"0","message":"参数错误","remainPoint":null,"taskId":null,"successCounts":null}
// 处理成功或失败的逻辑...
} catch (Exception e) {
e.printStackTrace();
}
}
}
import Foundation
#if canImport(FoundationNetworking)
import FoundationNetworking
#endif
var semaphore = DispatchSemaphore (value: 0)
var request = URLRequest(url: URL(string: "https://vip.veesing.com/smsApi/verifyCode?appId=YOUR_APP_ID&appKey=YOUR_APP_KEY&phone=131xxxx1090&templateId=520&variables=1234")!,timeoutInterval: Double.infinity)
request.httpMethod = "GET"
let task = URLSession.shared.dataTask(with: request) { data, response, error in
guard let data = data else {
print(String(describing: error))
semaphore.signal()
return
}
print(String(data: data, encoding: .utf8)!)
semaphore.signal()
}
task.resume()
semaphore.wait()
上述代码仅供演示,实际使用时需要替换成你的API密钥以及其他必要的参数