接受不到消息
```
public void sendSms(String phoneNumber, Integer tempId,Map<String,String> parma) {
System.out.println("调用了发消息!!");
SMSClient smsClient = new SMSClient(masterSecret, appKey);
SMSPayload payload = SMSPayload.newBuilder()
.setMobileNumber(phoneNumber) // 手机号码
.setTempId(tempId) // 短信模板ID,需要自己去申请
.setTempPara(parma)
.build();
try {
SendSMSResult res = smsClient.sendTemplateSMS(payload);
} catch (APIConnectionException e) {
e.printStackTrace();
} catch (APIRequestException e) {
e.printStackTrace();
}
}
17:45:54.451 [main] DEBUG cn.jiguang.common.connection.NativeHttpClient - Succeed to get response OK - responseCode:200
17:45:54.451 [main] DEBUG cn.jiguang.common.connection.NativeHttpClient - Response Content - {"msg_id":567587457208322}