All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jfinal.weixin.sdk.api.AutoReplyInfoApi Maven / Gradle / Ivy

package com.jfinal.weixin.sdk.api;

import com.jfinal.weixin.sdk.utils.HttpUtils;

/**
 * 获取自动回复规则
 * @author L.cm
 * email: [email protected]
 * site:http://www.dreamlu.net
 * date: 2016年2月15日 下午10:08:50
 */
public class AutoReplyInfoApi {

    private static String getCurrentAutoreplyInfoUrl = "https://api.weixin.qq.com/cgi-bin/get_current_autoreply_info?access_token=";

    public static ApiResult getCurrent() {
        String jsonResult = HttpUtils.get(getCurrentAutoreplyInfoUrl + AccessTokenApi.getAccessTokenStr());
        return new ApiResult(jsonResult);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy