com.aliyuncs.IAcsClient Java Examples

The following examples show how to use com.aliyuncs.IAcsClient. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AliyunSmsConfig.java    From open-capacity-platform with Apache License 2.0 6 votes vote down vote up
@Bean
public IAcsClient iAcsClient() throws ClientException {
	
	// 设置超时时间-可自行调整
	System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
	System.setProperty("sun.net.client.defaultReadTimeout", "10000");
	// 初始化ascClient需要的几个参数
	logger.info("初始化阿里云接口:" + this);
	final String product = "Dysmsapi";// 短信API产品名称(短信产品名固定,无需修改)
	final String domain = "dysmsapi.aliyuncs.com";// 短信API产品域名(接口地址固定,无需修改)
	// 替换成你的AK
	// 初始化ascClient,暂时不支持多region(请勿修改)
	IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
	try {
		DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
       } catch (ClientException e) {
           
           logger.error("初始化阿里云客户端失败:" + e);
       }
	
	IAcsClient acsClient = new DefaultAcsClient(profile);

	return acsClient;
}
 
Example #2
Source File: AliSmsService.java    From faster-framework-project with Apache License 2.0 6 votes vote down vote up
@Override
public boolean send(SendSmsRequest request) {
    try {
        IAcsClient acsClient = new DefaultAcsClient(profile);
        request.setMethod(MethodType.POST);
        SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
        if (sendSmsResponse.getCode() != null && sendSmsResponse.getCode().
                equals("OK")) {
            return true;
        }
    } catch (ClientException e) {
        log.error(e.getMessage());
        return false;
    }
    return false;
}
 
Example #3
Source File: ApiBootAliYunSmsService.java    From api-boot with Apache License 2.0 6 votes vote down vote up
/**
 * invoke send SMS
 *
 * @param request {@link ApiBootSmsRequest}
 * @return {@link ApiBootSmsResponse}
 * @throws ApiBootException ApiBoot Exception
 */
@Override
public ApiBootSmsResponse send(ApiBootSmsRequest request) throws ApiBootException {
    try {
        IClientProfile profile = DefaultProfile.getProfile(this.profile, this.accessKeyId, this.accessKeySecret);
        DefaultProfile.addEndpoint(this.profile, ALIYUN_PRODUCT, ALIYUN_PRODUCT_DOMAIN);
        IAcsClient acsClient = new DefaultAcsClient(profile);

        SendSmsRequest sendSmsRequest = new SendSmsRequest();
        sendSmsRequest.setPhoneNumbers(request.getPhone());
        sendSmsRequest.setSignName(this.signName);
        sendSmsRequest.setTemplateCode(request.getTemplateCode());
        sendSmsRequest.setTemplateParam(request.getParam().getParamJson());

        SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(sendSmsRequest);

        return ApiBootSmsResponse.builder().success(SUCCESS_RESULT.equals(sendSmsResponse.getCode())).build();

    } catch (Exception e) {
        throw new ApiBootException("invoke send SMS have Exception:" + e.getMessage());
    }
}
 
Example #4
Source File: AliyunSmsConfig.java    From cloud-service with MIT License 6 votes vote down vote up
@Bean
public IAcsClient iAcsClient() throws ClientException {
	// 设置超时时间-可自行调整
	System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
	System.setProperty("sun.net.client.defaultReadTimeout", "10000");
	// 初始化ascClient需要的几个参数
	final String product = "Dysmsapi";// 短信API产品名称(短信产品名固定,无需修改)
	final String domain = "dysmsapi.aliyuncs.com";// 短信API产品域名(接口地址固定,无需修改)
	// 初始化ascClient,暂时不支持多region(请勿修改)
	IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
	DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);

	IAcsClient acsClient = new DefaultAcsClient(profile);

	return acsClient;
}
 
Example #5
Source File: InstanceService.java    From cs-actions with Apache License 2.0 6 votes vote down vote up
public static String getInstanceStatus(final String proxyHost,
                                       final String proxyPort,
                                       final String proxyUsername,
                                       final String proxyPassword,
                                       final String instanceId,
                                       final String regionId,
                                       final IAcsClient client) throws RuntimeException {
    // Instantiate getInstanceStatus request
    String status = "";
    final DescribeInstanceStatusRequest describeInstanceStatusRequest = new DescribeInstanceStatusRequest();
    describeInstanceStatusRequest.setRegionId(regionId);

    // Initiate the request and handle the response or exceptions
    List<DescribeInstanceStatusResponse.InstanceStatus> instanceStatuses = ((DescribeInstanceStatusResponse) getResponse(proxyHost, proxyPort, proxyUsername, proxyPassword,
            client, describeInstanceStatusRequest)).getInstanceStatuses();
    for (DescribeInstanceStatusResponse.InstanceStatus instanceStatus : instanceStatuses) {
        if ((instanceStatus.getInstanceId()).equalsIgnoreCase(instanceId)) {
            status = instanceStatus.getStatus();
            break;
        }
    }

    return status;
}
 
Example #6
Source File: InstanceService.java    From cs-actions with Apache License 2.0 6 votes vote down vote up
public static String startInstance(final String proxyHost,
                                   final String proxyPort,
                                   final String proxyUsername,
                                   final String proxyPassword,
                                   final String instanceId,
                                   final Boolean initLocalDisk,
                                   final IAcsClient client) throws RuntimeException {
    // Instantiate Start Instance request
    final StartInstanceRequest startInstanceRequest = new StartInstanceRequest();
    startInstanceRequest.setInstanceId(instanceId);
    startInstanceRequest.setInitLocalDisk(initLocalDisk);

    // Initiate the request and handle the response or exceptions
    return ((StartInstanceResponse) getResponse(proxyHost, proxyPort, proxyUsername, proxyPassword,
            client, startInstanceRequest)).getRequestId();
}
 
Example #7
Source File: InstanceService.java    From cs-actions with Apache License 2.0 6 votes vote down vote up
public static String stopInstance(final String proxyHost,
                                  final String proxyPort,
                                  final String proxyUsername,
                                  final String proxyPassword,
                                  final String instanceId,
                                  final Boolean forceStop,
                                  final Boolean confirmStop,
                                  final String stoppedMode,
                                  final IAcsClient client) throws RuntimeException {
    // Instantiate Stop Instance request
    final StopInstanceRequest stopInstanceRequest = new StopInstanceRequest();
    stopInstanceRequest.setInstanceId(instanceId);
    stopInstanceRequest.setForceStop(forceStop);
    stopInstanceRequest.setConfirmStop(confirmStop);
    stopInstanceRequest.setStoppedMode(stoppedMode);


    // Initiate the request and handle the response or exceptions
    return ((StopInstanceResponse) getResponse(proxyHost, proxyPort, proxyUsername, proxyPassword,
            client, stopInstanceRequest)).getRequestId();
}
 
Example #8
Source File: InstanceService.java    From cs-actions with Apache License 2.0 6 votes vote down vote up
public static String restartInstance(final String proxyHost,
                                     final String proxyPort,
                                     final String proxyUsername,
                                     final String proxyPassword,
                                     final String instanceId,
                                     final Boolean forceStop,
                                     final IAcsClient client) throws RuntimeException {
    // Instantiate Restart Instance request
    final RebootInstanceRequest rebootInstanceRequest = new RebootInstanceRequest();
    rebootInstanceRequest.setInstanceId(instanceId);
    rebootInstanceRequest.setForceStop(forceStop);

    // Initiate the request and handle the response or exceptions
    return ((RebootInstanceResponse) getResponse(proxyHost, proxyPort, proxyUsername, proxyPassword,
            client, rebootInstanceRequest)).getRequestId();
}
 
Example #9
Source File: InstanceService.java    From cs-actions with Apache License 2.0 6 votes vote down vote up
private static AcsResponse getResponse(final String proxyHost,
                                       final String proxyPort,
                                       final String proxyUsername,
                                       final String proxyPassword,
                                       final IAcsClient client,
                                       final AcsRequest request) {


    try {
        if (!isEmpty(proxyHost)) {
            // Set JVM proxies during runtime
            ProxyUtil.setProxies(proxyHost, proxyPort, proxyUsername, proxyPassword);
            //Thread.sleep(30000);
        }
        return client.getAcsResponse(request);
    } catch (ClientException e) {
        throw new RuntimeException(e.getMessage());
    } finally {
        if (!isEmpty(proxyHost)) {
            //Clear proxies
            ProxyUtil.clearProxy();
        }
    }
}
 
Example #10
Source File: DySmsHelper.java    From jeewx-boot with Apache License 2.0 5 votes vote down vote up
/**
 * 发短信接口(短信模板编码自己传入)
 * @param templateCode
 * @param phone
 * @param json
 * @return
 * @throws ClientException
 */
public static boolean sendSms(String templateCode,String phone,JSONObject json) throws ClientException {

    //可自助调整超时时间
    System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
    System.setProperty("sun.net.client.defaultReadTimeout", "10000");

    //初始化acsClient,暂不支持region化
    IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
    DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
    IAcsClient acsClient = new DefaultAcsClient(profile);

    //组装请求对象-具体描述见控制台-文档部分内容
    SendSmsRequest request = new SendSmsRequest();
    //必填:待发送手机号
    request.setPhoneNumbers(phone);
    //必填:短信签名-可在短信控制台中找到
    request.setSignName(msgSignName);
    //必填:短信模板-可在短信控制台中找到
    request.setTemplateCode(templateCode);
    //可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
    request.setTemplateParam(json.toString());

    //选填-上行短信扩展码(无特殊需求用户请忽略此字段)
    //request.setSmsUpExtendCode("90997");

    //可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
    //request.setOutId("yourOutId");

    boolean result = false;

    //hint 此处可能会抛出异常,注意catch
    SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
    logger.info("短信接口返回的数据----------------");
    logger.info("{Code:" + sendSmsResponse.getCode()+",Message:" + sendSmsResponse.getMessage()+",RequestId:"+ sendSmsResponse.getRequestId()+",BizId:"+sendSmsResponse.getBizId()+"}");
    if ("OK".equals(sendSmsResponse.getCode())) {
        result = true;
    }
    return result;
}
 
Example #11
Source File: AliSmsUtil.java    From charging_pile_cloud with MIT License 5 votes vote down vote up
/**
 * 查询短信详情类
 *
 * @param bizId
 * @return
 * @throws ClientException
 */
public static QuerySendDetailsResponse querySendDetails(String bizId) throws ClientException {

    //可自助调整超时时间
    System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
    System.setProperty("sun.net.client.defaultReadTimeout", "10000");

    //初始化acsClient,暂不支持region化
    IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
    DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
    IAcsClient acsClient = new DefaultAcsClient(profile);

    //组装请求对象
    QuerySendDetailsRequest request = new QuerySendDetailsRequest();
    //必填-号码
    request.setPhoneNumber("13015582371");
    //可选-流水号
    request.setBizId(bizId);
    //必填-发送日期 支持30天内记录查询,格式yyyyMMdd
    SimpleDateFormat ft = new SimpleDateFormat("yyyyMMdd");
    request.setSendDate(ft.format(new Date()));
    //必填-页大小
    request.setPageSize(10L);
    //必填-当前页码从1开始计数
    request.setCurrentPage(1L);

    //hint 此处可能会抛出异常,注意catch
    QuerySendDetailsResponse querySendDetailsResponse = acsClient.getAcsResponse(request);

    return querySendDetailsResponse;
}
 
Example #12
Source File: SmsUtil.java    From mogu_blog_v2 with Apache License 2.0 5 votes vote down vote up
public SendSmsResponse sendSms(String mobile, String template_code, String sign_name, String param) throws ClientException {

        //可自助调整超时时间
        System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
        System.setProperty("sun.net.client.defaultReadTimeout", "10000");

        //初始化acsClient,暂不支持region化
        IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
        DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
        IAcsClient acsClient = new DefaultAcsClient(profile);

        //组装请求对象-具体描述见控制台-文档部分内容
        SendSmsRequest request = new SendSmsRequest();
        //必填:待发送手机号
        request.setPhoneNumbers(mobile);
        //必填:短信签名-可在短信控制台中找到
        request.setSignName(sign_name);
        //必填:短信模板-可在短信控制台中找到
        request.setTemplateCode(template_code);
        //可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
        request.setTemplateParam(param);

        //选填-上行短信扩展码(无特殊需求用户请忽略此字段)
        //request.setSmsUpExtendCode("90997");

        //可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
        request.setOutId("yourOutId");

        //hint 此处可能会抛出异常,注意catch
        SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);

        return sendSmsResponse;
    }
 
Example #13
Source File: AppConfig.java    From staffjoy with MIT License 5 votes vote down vote up
@Bean
public IAcsClient acsClient(@Autowired SentryClient sentryClient) {
    IClientProfile profile = DefaultProfile.getProfile(SmsConstant.ALIYUN_REGION_ID, appProps.getAliyunAccessKey(), appProps.getAliyunAccessSecret());
    try {
        DefaultProfile.addEndpoint(SmsConstant.ALIYUN_SMS_ENDPOINT_NAME, SmsConstant.ALIYUN_REGION_ID, SmsConstant.ALIYUN_SMS_PRODUCT, SmsConstant.ALIYUN_SMS_DOMAIN);
    } catch (ClientException ex) {
        sentryClient.sendException(ex);
        logger.error("Fail to create acsClient ", ex);
    }
    IAcsClient client = new DefaultAcsClient(profile);
    return client;
}
 
Example #14
Source File: SmsUtils.java    From leyou with Apache License 2.0 5 votes vote down vote up
public SendSmsResponse sendSms(String phone, String code, String signName, String template) throws ClientException {

        // 可自助调整超时时间
        System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
        System.setProperty("sun.net.client.defaultReadTimeout", "10000");

        // 初始化acsClient,暂不支持region化
        IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou",
                prop.getAccessKeyId(), prop.getAccessKeySecret());
        DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
        IAcsClient acsClient = new DefaultAcsClient(profile);

        // 组装请求对象-具体描述见控制台-文档部分内容
        SendSmsRequest request = new SendSmsRequest();
        request.setMethod(MethodType.POST);
        // 必填:待发送手机号
        request.setPhoneNumbers(phone);
        // 必填:短信签名-可在短信控制台中找到
        request.setSignName(signName);
        // 必填:短信模板-可在短信控制台中找到
        request.setTemplateCode(template);
        // 可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
        request.setTemplateParam("{\"code\":\"" + code + "\"}");

        // 选填-上行短信扩展码(无特殊需求用户请忽略此字段)
        //request.setSmsUpExtendCode("90997");

        // 可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
        request.setOutId("123456");

        // hint 此处可能会抛出异常,注意catch
        SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);

        logger.info("发送短信状态:{}", sendSmsResponse.getCode());
        logger.info("发送短信消息:{}", sendSmsResponse.getMessage());

        return sendSmsResponse;
    }
 
Example #15
Source File: SmsService.java    From spring-microservice-exam with MIT License 5 votes vote down vote up
/**
 * 发送短信
 *
 * @param smsDto smsDto
 * @return SmsResponse
 * @author tangyi
 * @date 2019/06/22 13:28
 */
public SmsResponse sendSms(SmsDto smsDto) {
    DefaultProfile profile = DefaultProfile.getProfile(smsProperties.getRegionId(), smsProperties.getAppKey(), smsProperties.getAppSecret());
    IAcsClient client = new DefaultAcsClient(profile);
    CommonRequest request = new CommonRequest();
    request.setMethod(MethodType.POST);
    request.setDomain(smsProperties.getDomain());
    request.putQueryParameter("RegionId", smsProperties.getRegionId());
    request.putQueryParameter("PhoneNumbers", smsDto.getReceiver());
    request.putQueryParameter("SignName", smsProperties.getSignName());
    request.putQueryParameter("TemplateCode", smsProperties.getTemplateCode());
    request.putQueryParameter("TemplateParam", smsDto.getContent());
    request.setVersion(smsProperties.getVersion());
    request.setAction(smsProperties.getAction());
    try {
        CommonResponse response = client.getCommonResponse(request);
        log.info("response: {}", response.getData());
        if (response.getHttpStatus() != 200)
            throw new CommonException(response.getData());
        SmsResponse smsResponse = JsonMapper.getInstance().fromJson(response.getData(), SmsResponse.class);
        if (smsResponse == null)
            throw new CommonException("Parse response error");
        if (!"OK".equals(smsResponse.getCode()))
            throw new CommonException(smsResponse.getMessage());
        return smsResponse;
    } catch (Exception e) {
        log.error(e.getMessage(), e);
        throw new CommonException("Send message failed: " + e.getMessage());
    }
}
 
Example #16
Source File: DefaultAliSmsTemplate.java    From fast-family-master with Apache License 2.0 5 votes vote down vote up
@Override
public void sendSms(AliSmsEntity aliSmsEntity) {
    final IAcsClient acsClient = this.getAcsClient();
    final CommonRequest request = this.getAliSmsRequest(aliSmsEntity);
    final CommonResponse response;
    try {
        response = acsClient.getCommonResponse(request);
        this.parseResponse(response);
    } catch (ClientException | IOException e) {
        throw new AliSmsException(e);
    } finally {
        acsClient.shutdown();
    }
}
 
Example #17
Source File: AbstractAliSmsTemplate.java    From fast-family-master with Apache License 2.0 5 votes vote down vote up
@Override
public IAcsClient getAcsClient() {
    IClientProfile profile = DefaultProfile.getProfile(aliSmsProperties.getRegionId(),
            aliSmsProperties.getAliyunAccessKeyId(), aliSmsProperties.getAliyunAccessKeySecret());
    try {
        DefaultProfile.addEndpoint(aliSmsProperties.getEndPointName(), aliSmsProperties.getRegionId(),
                aliSmsProperties.getProduce(), aliSmsProperties.getDomain());
    } catch (ClientException e) {
        throw new AliSmsException(e);
    }
    return new DefaultAcsClient(profile);
}
 
Example #18
Source File: SmsUtil.java    From codeway_service with GNU General Public License v3.0 5 votes vote down vote up
/**
 * 发送短信
 *
 * @param mobile        手机号
 * @param template_code 模板号
 * @param sign_name     签名
 * @param param         参数
 * @return SendSmsResponse
 */
public SendSmsResponse sendSms(String mobile, String template_code, String sign_name, String param) throws ClientException {

	//可自助调整超时时间
	System.setProperty("sun.net.client.defaultConnectTimeout","10000");
	System.setProperty("sun.net.client.defaultReadTimeout", "10000");
	//初始化acsClient,暂不支持region化
	IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou",accessKeyId, accessKeySecret);
	DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product,domain);
	IAcsClient acsClient = new DefaultAcsClient(profile);
	//组装请求对象‐具体描述见控制台‐文档部分内容
	SendSmsRequest request = new SendSmsRequest();
	//必填:待发送手机号
	request.setPhoneNumbers(mobile);
	//必填:短信签名‐可在短信控制台中找到
	request.setSignName(sign_name);
	//必填:短信模板‐可在短信控制台中找到
	request.setTemplateCode(template_code);
	//可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为$ {code}"时,此处的值为("{\"name\":\"Tom\", \"code\":\"123\"}"
	request.setTemplateParam(param);
	//选填‐上行短信扩展码(无特殊需求用户请忽略此字段)
	//request.setSmsUpExtendCode("90997");
	//可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
	request.setOutId("yourOutId");
	//hint 此处可能会抛出异常,注意catch
	SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
	return sendSmsResponse;
}
 
Example #19
Source File: SmsUtil.java    From codeway_service with GNU General Public License v3.0 5 votes vote down vote up
/**
 * 查询发送详情
 * @param mobile
 * @param bizId
 * @return QuerySendDetailsResponse
 */
public QuerySendDetailsResponse querySendDetails(String mobile, String bizId) throws ClientException {

	//可自助调整超时时间
	System.setProperty("sun.net.client.defaultConnectTimeout","10000");
	System.setProperty("sun.net.client.defaultReadTimeout", "10000");
	//初始化acsClient,暂不支持region化
	IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou",accessKeyId, accessKeySecret);
	DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product,domain);
	IAcsClient acsClient = new DefaultAcsClient(profile);
	//组装请求对象
	QuerySendDetailsRequest request = new QuerySendDetailsRequest();
	//必填‐号码
	request.setPhoneNumber(mobile);
	//可选‐流水号
	request.setBizId(bizId);
	//必填‐发送日期 支持30天内记录查询,格式yyyyMMdd
	SimpleDateFormat ft = new SimpleDateFormat("yyyyMMdd");
	request.setSendDate(ft.format(new Date()));
	//必填‐页大小
	request.setPageSize(10L);
	//必填‐当前页码从1开始计数
	request.setCurrentPage(1L);
	//hint 此处可能会抛出异常,注意catch
	QuerySendDetailsResponse querySendDetailsResponse = acsClient.getAcsResponse(request);
	return querySendDetailsResponse;
}
 
Example #20
Source File: AliyunUtil.java    From roncoo-education with MIT License 5 votes vote down vote up
public static boolean sendMsg(String phone, String code, Aliyun aliyun) throws ClientException {
	System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
	System.setProperty("sun.net.client.defaultReadTimeout", "10000");
	// 初始化ascClient需要的几个参数
	// 初始化ascClient,暂时不支持多region(请勿修改)
	IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", aliyun.getAliyunAccessKeyId(), aliyun.getAliyunAccessKeySecret());
	DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", "Dysmsapi", "dysmsapi.aliyuncs.com");
	IAcsClient acsClient = new DefaultAcsClient(profile);
	// 组装请求对象
	SendSmsRequest request = new SendSmsRequest();
	// 使用post提交
	request.setMethod(MethodType.POST);
	// 必填:待发送手机号。支持以逗号分隔的形式进行批量调用,批量上限为1000个手机号码,批量调用相对于单条调用及时性稍有延迟,验证码类型的短信推荐使用单条调用的方式
	request.setPhoneNumbers(phone);
	// 必填:短信签名-可在短信控制台中找到
	request.setSignName(aliyun.getSignName());
	// 必填:短信模板-可在短信控制台中找到
	request.setTemplateCode(aliyun.getSmsCode());
	// 可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
	// 友情提示:如果JSON中需要带换行符,请参照标准的JSON协议对换行符的要求,比如短信内容中包含\r\n的情况在JSON中需要表示成\\r\\n,否则会导致JSON在服务端解析失败
	request.setTemplateParam("{\"code\":\"{code}\",\"product\":\"领课开源\"}".replace("{code}", code));
	// 可选-上行短信扩展码(扩展码字段控制在7位或以下,无特殊需求用户请忽略此字段)
	// request.setSmsUpExtendCode("90997");
	// 可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
	// request.setOutId("yourOutId");
	// 请求失败这里会抛ClientException异常
	SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
	if (sendSmsResponse.getCode() != null && sendSmsResponse.getCode().equals("OK")) {
		// 请求成功
		log.debug(sendSmsResponse.getCode());
		return true;
	} else {
		log.error("发送失败,code={},message={}", sendSmsResponse.getCode(), sendSmsResponse.getMessage());
		return false;
	}
}
 
Example #21
Source File: SmsapiService.java    From FlyCms with MIT License 5 votes vote down vote up
public SendSmsResponse sendSms(String PhoneNumber,String code,String accessKeyId,String accessKeySecret,String signName,String templateCode) throws ClientException {
    //可自助调整超时时间
    System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
    System.setProperty("sun.net.client.defaultReadTimeout", "10000");
    //初始化acsClient,暂不支持region化
    IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
    DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
    IAcsClient acsClient = new DefaultAcsClient(profile);
    //组装请求对象-具体描述见控制台-文档部分内容
    SendSmsRequest request = new SendSmsRequest();
    //必填:待发送手机号
    request.setPhoneNumbers(PhoneNumber);
    //必填:短信签名-可在短信控制台中找到
    request.setSignName(signName);
    //request.setSignName("猎职网");
    //必填:短信模板-可在短信控制台中找到
    request.setTemplateCode(templateCode);
    //request.setTemplateCode("SMS_126565207");
    //可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
    request.setTemplateParam("{\"name\":\"Tom\", \"code\":\""+code+"\"}");

    //选填-上行短信扩展码(无特殊需求用户请忽略此字段)
    //request.setSmsUpExtendCode("90997");

    //可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
    request.setOutId("用户名");
    //hint 此处可能会抛出异常,注意catch
    SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
    return sendSmsResponse;
}
 
Example #22
Source File: SmsapiService.java    From FlyCms with MIT License 5 votes vote down vote up
public static QuerySendDetailsResponse querySendDetails(String PhoneNumber,String bizId,String accessKeyId,String accessKeySecret) throws ClientException {

        //可自助调整超时时间
        System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
        System.setProperty("sun.net.client.defaultReadTimeout", "10000");

        //初始化acsClient,暂不支持region化
        IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
        DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
        IAcsClient acsClient = new DefaultAcsClient(profile);

        //组装请求对象
        QuerySendDetailsRequest request = new QuerySendDetailsRequest();
        //必填-号码
        request.setPhoneNumber(PhoneNumber);
        //可选-流水号
        request.setBizId(bizId);
        //必填-发送日期 支持30天内记录查询,格式yyyyMMdd
        SimpleDateFormat ft = new SimpleDateFormat("yyyyMMdd");
        request.setSendDate(ft.format(new Date()));
        //必填-页大小
        request.setPageSize(10L);
        //必填-当前页码从1开始计数
        request.setCurrentPage(1L);

        //hint 此处可能会抛出异常,注意catch
        QuerySendDetailsResponse querySendDetailsResponse = acsClient.getAcsResponse(request);

        return querySendDetailsResponse;
    }
 
Example #23
Source File: SmsAliStrategy.java    From zuihou-admin-cloud with Apache License 2.0 5 votes vote down vote up
@Override
    protected SmsResult send(SmsDO smsDO) {
        //可自助调整超时时间
        System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
        System.setProperty("sun.net.client.defaultReadTimeout", "10000");

        try {
            //初始化acsClient,暂不支持region化
            IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", smsDO.getAppId(), smsDO.getAppSecret());
//            DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", PRODUCT, DOMAIN);
            DefaultProfile.addEndpoint("cn-hangzhou", PRODUCT, DOMAIN);
            IAcsClient acsClient = new DefaultAcsClient(profile);

            //组装请求对象-具体描述见控制台-文档部分内容
            SendSmsRequest request = new SendSmsRequest();
            //必填:待发送手机号
            request.setPhoneNumbers(smsDO.getPhone());
            //必填:短信签名-可在短信控制台中找到
            request.setSignName(smsDO.getSignName());
            //必填:短信模板-可在短信控制台中找到
            request.setTemplateCode(smsDO.getTemplateCode());
            //可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
            request.setTemplateParam(smsDO.getTemplateParams());

            //可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
            request.setOutId(String.valueOf(smsDO.getTaskId()));

            log.info("阿里短信发送参数={}", JSONObject.toJSONString(request));
            //hint 此处可能会抛出异常,注意catch
            SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);

            log.info("阿里短信发送结果={}", JSONObject.toJSONString(sendSmsResponse));
            return SmsResult.build(ProviderType.ALI, sendSmsResponse.getCode(), sendSmsResponse.getBizId(),
                    sendSmsResponse.getRequestId(), sendSmsResponse.getMessage(), 0);
        } catch (ClientException e) {
            log.warn("阿里短信发送失败:" + smsDO.getPhone(), e);
            return SmsResult.fail(e.getMessage());
        }

    }
 
Example #24
Source File: AliyunSmsConfiguration.java    From paascloud-master with Apache License 2.0 5 votes vote down vote up
/**
 * Acs client acs client.
 *
 * @return the acs client
 *
 * @throws ClientException the client exception
 */
@Bean
public IAcsClient acsClient() throws ClientException {
	log.info("SMS Bean IAcsClient Start");
	IClientProfile profile = DefaultProfile.getProfile(paascloudProperties.getAliyun().getSms().getRegionId(), paascloudProperties.getAliyun().getKey().getAccessKeyId(), paascloudProperties.getAliyun().getKey().getAccessKeySecret());
	DefaultProfile.addEndpoint(paascloudProperties.getAliyun().getSms().getEndpointName(), paascloudProperties.getAliyun().getSms().getRegionId(), paascloudProperties.getAliyun().getSms().getProduct(), paascloudProperties.getAliyun().getSms().getDomain());
	DefaultAcsClient defaultAcsClient = new DefaultAcsClient(profile);
	log.info("加载SMS Bean IAcsClient OK");
	return defaultAcsClient;
}
 
Example #25
Source File: AliyunSmsConfiguration.java    From daming with Apache License 2.0 5 votes vote down vote up
@Bean
public AliyunSmsVerificationCodeSender aliyunSmsVerificationSender(IAcsClient acsClient) {
    AliyunSmsVerificationCodeSender sender = new AliyunSmsVerificationCodeSender(acsClient);
    sender.setSignature(signature);
    sender.setTemplateCode(templateCode);
    return sender;
}
 
Example #26
Source File: SimaplePhoneRegist.java    From danyuan-application with Apache License 2.0 5 votes vote down vote up
public void SendPhoneToCustom(String phone, String templateParam) throws ClientException {
		// 设置超时时间-可自行调整
		System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
		System.setProperty("sun.net.client.defaultReadTimeout", "10000");
		// 初始化ascClient需要的几个参数
		final String product = "Dysmsapi";// 短信API产品名称(短信产品名固定,无需修改)
		final String domain = "dysmsapi.aliyuncs.com";// 短信API产品域名(接口地址固定,无需修改)
		// 替换成你的AK
		// 初始化ascClient,暂时不支持多region(请勿修改)
		IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", PHONE_ACCESSKEYID, PHONE_ACCESSKEYSECRET);
		DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
		IAcsClient acsClient = new DefaultAcsClient(profile);
		// 组装请求对象
		SendSmsRequest request = new SendSmsRequest();
		// 使用post提交
		request.setMethod(MethodType.POST);
		// 必填:待发送手机号。支持以逗号分隔的形式进行批量调用,批量上限为1000个手机号码,批量调用相对于单条调用及时性稍有延迟,验证码类型的短信推荐使用单条调用的方式;发送国际/港澳台消息时,接收号码格式为国际区号+号码,如“85200000000”
		request.setPhoneNumbers(phone);
		// 必填:短信签名-可在短信控制台中找到
		request.setSignName(PHONE_SIGNNAME);
		// 必填:短信模板-可在短信控制台中找到,发送国际/港澳台消息时,请使用国际/港澳台短信模版
		request.setTemplateCode(PHONE_TEMPLATECODE);
		// 可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
		// 友情提示:如果JSON中需要带换行符,请参照标准的JSON协议对换行符的要求,比如短信内容中包含\r\n的情况在JSON中需要表示成\\r\\n,否则会导致JSON在服务端解析失败
		request.setTemplateParam(templateParam);
		// 可选-上行短信扩展码(扩展码字段控制在7位或以下,无特殊需求用户请忽略此字段)
		// request.setSmsUpExtendCode("90997");
		// 可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
//		request.setOutId("yourOutId");
		// 请求失败这里会抛ClientException异常
		SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
		if (sendSmsResponse.getCode() != null && sendSmsResponse.getCode().equals("OK")) {
			// 请求成功
		}
	}
 
Example #27
Source File: SmsOtpAuthnAliyun.java    From MaxKey with Apache License 2.0 5 votes vote down vote up
@Override
public boolean produce(UserInfo userInfo) {
    // 手机号
    String mobile = userInfo.getMobile();
    if (mobile != null && !mobile.equals("")) {
        try {
            DefaultProfile profile = DefaultProfile.getProfile(
                                "cn-hangzhou", accessKeyId, accessSecret);
            IAcsClient client = new DefaultAcsClient(profile);

            String token = this.genToken(userInfo);
            CommonRequest request = new CommonRequest();
            request.setSysMethod(MethodType.POST);
            request.setSysDomain("dysmsapi.aliyuncs.com");
            request.setSysVersion("2017-05-25");
            request.setSysAction("SendSms");
            request.putQueryParameter("RegionId", "cn-hangzhou");
            request.putQueryParameter("PhoneNumbers", mobile);
            request.putQueryParameter("SignName", signName);
            request.putQueryParameter("TemplateCode", templateCode);
            request.putQueryParameter("TemplateParam", "{\"code\":\"" + token + "\"}");
            CommonResponse response = client.getCommonResponse(request);
            logger.debug("responseString " + response.getData());
            //成功返回
            if (response.getData().indexOf("OK") > -1) {
                this.optTokenStore.store(
                        userInfo, 
                        token, 
                        userInfo.getMobile(), 
                        OptTypes.SMS);
                return true;
            }
        } catch  (Exception e) {
            logger.error(" produce code error ", e);
        } 
    }
    return false;
}
 
Example #28
Source File: ClientUtil.java    From cs-actions with Apache License 2.0 5 votes vote down vote up
public static IAcsClient getClient(final String regionId, final String accessKey, final String accessKeySecret) {
    final DefaultProfile profile = DefaultProfile.getProfile(
            regionId,
            accessKey,
            accessKeySecret);
    return new DefaultAcsClient(profile);
}
 
Example #29
Source File: InstanceService.java    From cs-actions with Apache License 2.0 5 votes vote down vote up
public static String deleteInstance(final String proxyHost,
                                    final String proxyPort,
                                    final String proxyUsername,
                                    final String proxyPassword,
                                    final String instanceId,
                                    final IAcsClient client) throws RuntimeException {
    // Instantiate Delete Instance request
    final DeleteInstanceRequest deleteInstanceRequest = new DeleteInstanceRequest();
    deleteInstanceRequest.setInstanceId(instanceId);

    // Initiate the request and handle the response or exceptions
    return ((DeleteInstanceResponse) getResponse(proxyHost, proxyPort, proxyUsername, proxyPassword,
            client, deleteInstanceRequest)).getRequestId();
}
 
Example #30
Source File: InstanceService.java    From cs-actions with Apache License 2.0 5 votes vote down vote up
public static String allocatePublicIpAddress(final String proxyHost,
                                             final String proxyPort,
                                             final String proxyUsername,
                                             final String proxyPassword,
                                             final String instanceId,
                                             final IAcsClient client) throws RuntimeException {
    // Instantiate Allocate Public Ip Address request
    final AllocatePublicIpAddressRequest allocatePublicIpAddressRequest = new AllocatePublicIpAddressRequest();
    allocatePublicIpAddressRequest.setInstanceId(instanceId);

    // Initiate the request and handle the response or exceptions
    return ((AllocatePublicIpAddressResponse) getResponse(proxyHost, proxyPort, proxyUsername, proxyPassword,
            client, allocatePublicIpAddressRequest)).getIpAddress();
}