OneApi Java 客户端
基本消息示例
首先使用您的用户名和密码初始化消息客户端:
Configuration configuration = new Configuration(USERNAME, PASSWORD);
SMSClient smsClient = new SMSClient(configuration);
如果您的用户名和/或密码不正确,将引发异常。
准备消息:
SMSRequest smsRequest = new SMSRequest(SENDER, MESSAGE, DESTINATION);
发送消息:
// Store request id because we can later query for the delivery status with it:
SendMessageResult sendMessageResult = smsC
评论0
最新资源