跳过导航链接
A B C D E F G H I J L M N O P R S T U V W _ 

A

AbstractRedisWeChatCacheOperator<T extends AbstractWeChatCacheOperator.ExpireValue<V>,V> - org.kangspace.wechat.cache中的类
微信相关缓存抽象实现 基于RedisTemplate缓存,需在Spring中注册redisTemplate
AbstractRedisWeChatCacheOperator() - 类 的构造器org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
 
AbstractWeChatCacheOperator<T extends AbstractWeChatCacheOperator.ExpireValue<V>,V> - org.kangspace.wechat.cache中的类
抽象微信缓存处理类
AbstractWeChatCacheOperator() - 类 的构造器org.kangspace.wechat.cache.AbstractWeChatCacheOperator
 
AbstractWeChatCacheOperator.ExpireValue<T> - org.kangspace.wechat.cache中的类
带超时时间的值
AbstractWeChatCacheOperator.RawLock - org.kangspace.wechat.cache中的类
获取原数据时的锁对象, 用于提供锁结果及解锁操作
accept(T) - 接口 中的方法org.kangspace.wechat.util.jdk18.Consumer
Performs this operation on the given argument.
ACCESS_TOKEN_CACHE_KEY - 类 中的静态变量org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
accessToken缓存key 格式 {cacheKeyPrefix}{AppID}
AccessTokenInvalidException - org.kangspace.wechat.util中的异常错误
AccessTokenInvalidException(WeChatReturnBean) - 异常错误 的构造器org.kangspace.wechat.util.AccessTokenInvalidException
 
AccessTokenInvalidException(String, WeChatReturnBean) - 异常错误 的构造器org.kangspace.wechat.util.AccessTokenInvalidException
 
AccessTokenInvalidException(String, Throwable, WeChatReturnBean) - 异常错误 的构造器org.kangspace.wechat.util.AccessTokenInvalidException
 
AccessTokenInvalidException(Throwable, WeChatReturnBean) - 异常错误 的构造器org.kangspace.wechat.util.AccessTokenInvalidException
 
AccessTokenInvalidException(String, Throwable, boolean, boolean, WeChatReturnBean) - 异常错误 的构造器org.kangspace.wechat.util.AccessTokenInvalidException
 
AccessTokenReturnBean - org.kangspace.wechat.mp中的类
 
AccessTokenReturnBean() - 类 的构造器org.kangspace.wechat.mp.AccessTokenReturnBean
 
AES - org.kangspace.wechat.util.encryption中的类
 
AES() - 类 的构造器org.kangspace.wechat.util.encryption.AES
 
AES(String) - 类 的构造器org.kangspace.wechat.util.encryption.AES
 
AES(AES.EncryptAESType) - 类 的构造器org.kangspace.wechat.util.encryption.AES
 
AES(int, String) - 类 的构造器org.kangspace.wechat.util.encryption.AES
 
AES(int, AES.EncryptAESType, String) - 类 的构造器org.kangspace.wechat.util.encryption.AES
 
AES.EncryptAESType - org.kangspace.wechat.util.encryption中的枚举
AES 模式
APP_ID - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
默认APP_ID,从配置文件中获取
APP_ID_SECRETS - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
多公众号APP_ID,APP_SECRET配置,从配置文件中获取
APP_ID_SECRETS_MAP - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
多APP_ID,APP_SECRETS配置项Map map key: 配置项中的key map value: 配置项中APP_ID,APP_SECRET组成的对象
APP_SECRET - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
默认APP_SECRET,从配置文件中获取
AppIdSecret() - 类 的构造器org.kangspace.wechat.config.WeChatConfig.AppIdSecret
 
AppIdSecret(String, String) - 类 的构造器org.kangspace.wechat.config.WeChatConfig.AppIdSecret
 
apply(T) - 接口 中的方法org.kangspace.wechat.util.jdk18.Function
Applies this function to the given argument.
asReturnBean(String, Class<T>) - 类 中的静态方法org.kangspace.wechat.util.WeChatUtil
将json字符串转换为 WeChatReturnBean
auth(HttpServletRequest, HttpServletResponse, String, String, String) - 类 中的方法org.kangspace.wechat.endpoint.WeChatController
微信网页授权访问入口 auth/{appId}
authCallback(HttpServletRequest, HttpServletResponse, String, String, String) - 类 中的方法org.kangspace.wechat.endpoint.WeChatController
网页授权通过后,通过CODE获取OpenId,重定向前端页面 auth-callback

B

BLACK_COLOR - 接口 中的静态变量org.kangspace.wechat.message.factory.MessageFactory
默认颜色
byteToHexStr(byte) - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
将字节转换为十六进制字符串
byteToStr(byte[]) - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
将字节数组转换为十六进制字符串

C

CHARSET_GBK - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpClient
 
CHARSET_GBK - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpsClient
 
CHARSET_UTF8 - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpClient
 
CHARSET_UTF8 - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpsClient
 
checkClientTrusted(X509Certificate[], String) - 类 中的方法org.kangspace.wechat.util.http.MyX509TrustManager
 
checkServerTrusted(X509Certificate[], String) - 类 中的方法org.kangspace.wechat.util.http.MyX509TrustManager
 
CodecUtil - org.kangspace.wechat.util.encryption中的类
 
CodecUtil() - 类 的构造器org.kangspace.wechat.util.encryption.CodecUtil
 
CommonUtils - org.kangspace.wechat.util中的类
 
CommonUtils() - 类 的构造器org.kangspace.wechat.util.CommonUtils
 
ConfigHelper - org.kangspace.wechat.util中的类
 
ConfigHelper(String) - 类 的构造器org.kangspace.wechat.util.ConfigHelper
 
Consumer<T> - org.kangspace.wechat.util.jdk18中的接口
Represents an operation that accepts a single input argument and returns no result.
contentType - 类 中的变量org.kangspace.wechat.util.http.MyHttpClient
 
contentType - 类 中的变量org.kangspace.wechat.util.http.MyHttpsClient
 
CONTENTTYPE_APPLICATION_JSON - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpClient
 
CONTENTTYPE_APPLICATION_JSON - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpsClient
 
CONTENTTYPE_APPLICATION_JSON_UTF8 - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpClient
 
CONTENTTYPE_APPLICATION_JSON_UTF8 - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpsClient
 
CONTENTTYPE_TEXT_HTML_UTF8 - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpClient
 
CONTENTTYPE_TEXT_HTML_UTF8 - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpsClient
 
createCaptcha(HttpServletResponse) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
 
createRandom(int) - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
 
createSHA1Sign(SortedMap<String, String>) - 类 中的静态方法org.kangspace.wechat.util.encryption.Sha1Util
 
createUUID() - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
 

D

decodeBase64(String) - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
 
decodeBase64(byte[]) - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
 
decodeBase64Byte(byte[]) - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
 
decodeBase64Byte(String) - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
 
decrptAESBase64(String) - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
AES解密
decrypt(byte[]) - 类 中的方法org.kangspace.wechat.util.encryption.AES
AES解密
decryptFromBase64(String) - 类 中的方法org.kangspace.wechat.util.encryption.AES
将Base64编码的 AES加密字符串解密
DEFAULT_APP_ID_SECRET_KEY - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
多APP_ID,APP_SECRETS配置项Map的默认key
DEFAULT_COLOR - 接口 中的静态变量org.kangspace.wechat.message.factory.MessageFactory
默认颜色
DEFAULT_FIRST_VAL - 类 中的静态变量org.kangspace.wechat.message.factory.MessageFactory.FourKeyMessageFactory
first字段默认值
DEFAULT_FIRST_VAL - 类 中的静态变量org.kangspace.wechat.message.factory.MessageFactory.ThreeKeyMessageFactory
first字段默认值
DEFAULT_KEY3_VAL - 类 中的静态变量org.kangspace.wechat.message.factory.MessageFactory.ThreeKeyMessageFactory
key3字段默认值
DEFAULT_LANG - 类 中的静态变量org.kangspace.wechat.mp.MpUserInfoBatchParamDTO.UserOpenIdParam
默认语言
DEFAULT_REMARK_VAL - 类 中的静态变量org.kangspace.wechat.message.factory.MessageFactory.FourKeyMessageFactory
remark字段默认值
DEFAULT_REMARK_VAL - 类 中的静态变量org.kangspace.wechat.message.factory.MessageFactory.ThreeKeyMessageFactory
remark字段默认值
DEFAULT_SUCCESS_ERROR_CODE - 类 中的静态变量org.kangspace.wechat.bean.WeChatReturnBean
默认成功代码
defaultByteSize - 类 中的变量org.kangspace.wechat.util.http.MyHttpClient
 
defaultByteSize - 类 中的变量org.kangspace.wechat.util.http.MyHttpsClient
 
DELETE - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpClient
 
DELETE - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpsClient
 
deserialize(JsonParser, DeserializationContext) - 类 中的方法org.kangspace.wechat.util.JacksonParser.UnixTimestampDeserializer
 

E

encodeBase64(byte[]) - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
 
encrptAESBase64(String) - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
AES加密
encrypt(String) - 类 中的方法org.kangspace.wechat.util.encryption.AES
AES加密
encryptMD5(String) - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
 
encryptSHA1(String) - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
 
encryptToBase64(String) - 类 中的方法org.kangspace.wechat.util.encryption.AES
AES加密,返回Base64编码串
encryptToHex(String) - 类 中的方法org.kangspace.wechat.util.encryption.AES
AES加密,返回HEX编码串
executeHttpMethod(HttpClient, HttpMethod) - 类 中的方法org.kangspace.wechat.util.http.MyHttpClient
方法说明:执行Method请求 开发时间:2015年3月16日上午11:04:50 开发人员:Kang
ExpireValue() - 类 的构造器org.kangspace.wechat.cache.AbstractWeChatCacheOperator.ExpireValue
 
ExpireValue(T, Long) - 类 的构造器org.kangspace.wechat.cache.AbstractWeChatCacheOperator.ExpireValue
 

F

forwardRequest(String, HttpServletRequest, HttpServletResponse) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
 
FourDataMessageTemplateDataBean - org.kangspace.wechat.message中的类
 
FourDataMessageTemplateDataBean(MessageTemplateDataValueColorBean) - 类 的构造器org.kangspace.wechat.message.FourDataMessageTemplateDataBean
 
FourDataMessageTemplateDataBean(MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean) - 类 的构造器org.kangspace.wechat.message.FourDataMessageTemplateDataBean
 
FourDataMessageTemplateDataBean(MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean) - 类 的构造器org.kangspace.wechat.message.FourDataMessageTemplateDataBean
 
FourKeyMessageFactory() - 类 的构造器org.kangspace.wechat.message.factory.MessageFactory.FourKeyMessageFactory
 
Function<T,R> - org.kangspace.wechat.util.jdk18中的接口
Represents a function that accepts one argument and produces a result.

G

get(String, String) - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
获取缓存信息,缓存不存在时,获取新内容
get(String, String, Boolean) - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
获取缓存信息
get(String, String) - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
获取缓存信息,缓存不存在时,获取新内容
get(String, String, Boolean) - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
获取缓存信息
get(String, String, Boolean) - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator
获取缓存信息,缓存失效时,重新刷新缓存
get(String, String) - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator
 
get(String, String) - 接口 中的方法org.kangspace.wechat.cache.WeChatCacheOperator
获取数据值并缓存信息
get(String, String, String, String, String, String, String, String, String, String, String, MessageBean.Miniprogram) - 类 中的静态方法org.kangspace.wechat.message.factory.MessageFactory.FourKeyMessageFactory
获取新的消息发送对象
get(String, String, String, String, String, String, String, String, String, String, String, String, MessageBean.Miniprogram) - 类 中的静态方法org.kangspace.wechat.message.factory.MessageFactory.FourKeyMessageFactory
获取新的消息发送对象
get(String, String, String, String, String, String, MessageBean.Miniprogram) - 类 中的静态方法org.kangspace.wechat.message.factory.MessageFactory.ThreeKeyMessageFactory
 
get(String, String, String, String, String, String, String, String, String, String, String, MessageBean.Miniprogram) - 类 中的静态方法org.kangspace.wechat.message.factory.MessageFactory.ThreeKeyMessageFactory
获取新的消息发送对象
get(String) - 接口 中的方法org.kangspace.wechat.util.http.MyAbstractHttp
GET 请求
get() - 接口 中的方法org.kangspace.wechat.util.http.MyAbstractHttp
GET 请求
GET - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpClient
 
get(String, Map<String, String>) - 类 中的方法org.kangspace.wechat.util.http.MyHttpClient
方法说明:HttpClient Get请求 开发时间:2015年3月16日上午11:27:00 开发人员:Kang
get(String) - 类 中的方法org.kangspace.wechat.util.http.MyHttpClient
 
get() - 类 中的方法org.kangspace.wechat.util.http.MyHttpClient
 
GET - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpsClient
 
get(String) - 类 中的方法org.kangspace.wechat.util.http.MyHttpsClient
 
get() - 类 中的方法org.kangspace.wechat.util.http.MyHttpsClient
 
getAcceptedIssuers() - 类 中的方法org.kangspace.wechat.util.http.MyX509TrustManager
 
getAccessToken() - 类 中的方法org.kangspace.wechat.message.batch.SendHelper.SendObject
 
getAccessToken() - 类 中的方法org.kangspace.wechat.mp.AccessTokenReturnBean
 
getAccessToken() - 类 中的方法org.kangspace.wechat.mp.MpInterfaceAccess
获取公众号AccessToken 该参数需缓存
getAccessToken(String) - 类 中的方法org.kangspace.wechat.mp.MpInterfaceAccess
获取公众号AccessToken 该参数需缓存
getAccessToken() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2AccessTokenReturnBean
 
getAccessToken(String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2InterfaceAccess
获取网页授权AccessToken
getAccessToken(String, String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2InterfaceAccess
 
getAppId() - 类 中的方法org.kangspace.wechat.config.WeChatConfig.AppIdSecret
 
getAppId() - 类 中的方法org.kangspace.wechat.message.batch.SendHelper.SendObject
 
getAppid() - 类 中的方法org.kangspace.wechat.message.MessageBean.Miniprogram
 
getAppId() - 类 中的方法org.kangspace.wechat.mp.JSApiTicketSignBean
 
getAppIdSecret(String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
通过appId从WeChatConfig.APP_ID_SECRETS_MAP中获取AppIdSecret
getAppIdSecretByKey(String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
通过key从WeChatConfig.APP_ID_SECRETS_MAP中获取AppIdSecret
getAppSecret() - 类 中的方法org.kangspace.wechat.config.WeChatConfig.AppIdSecret
 
getBasePath(HttpServletRequest) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
获取服务器路径
getBundle() - 类 中的方法org.kangspace.wechat.util.ConfigHelper
获取配置信息
getCache(String, String) - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
根据Key获取缓存信息
getCache(String, String) - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
根据Key获取缓存信息
getCache(String, String) - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator
 
getCache(String, String) - 接口 中的方法org.kangspace.wechat.cache.WeChatCacheOperator
获取缓存信息
getCacheKeyPrefix() - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
 
getCacheKeyPrefix() - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
 
getCity() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getCity() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
getClient(String) - 类 中的静态方法org.kangspace.wechat.util.http.MyHttpUtil
获取一个http或https client 自动识别http或https
getColor() - 类 中的方法org.kangspace.wechat.message.MessageTemplateDataValueColorBean
 
getCookie(HttpServletRequest, String) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
 
getCount() - 类 中的方法org.kangspace.wechat.mp.MpUserListReturnBean
 
getCountry() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getCountry() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
getcTime() - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator.ExpireValue
 
getData() - 类 中的方法org.kangspace.wechat.message.MessageBean
 
getData() - 类 中的方法org.kangspace.wechat.mp.MpUserListReturnBean
 
getDefaultAppIdSecret() - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
获取默认的AppIdSecret
getErrcode() - 类 中的方法org.kangspace.wechat.bean.WeChatReturnBean
 
getErrmsg() - 类 中的方法org.kangspace.wechat.bean.WeChatReturnBean
 
getExpiresIn() - 类 中的方法org.kangspace.wechat.mp.AccessTokenReturnBean
 
getExpiresIn() - 类 中的方法org.kangspace.wechat.mp.JSApiTicketReturnBean
 
getExpiresIn() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2AccessTokenReturnBean
 
getExpiresSeconds() - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
 
getExpiresSeconds() - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
 
getExpiresSeconds() - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator.ExpireValue
 
getFirst() - 类 中的方法org.kangspace.wechat.message.MessageTemplateDataBean
 
getFullKey(String) - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
获取缓存的完整key 格式: {cacheKeyPrefix}:{key}
getFullKey(String) - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
获取缓存的完整key 格式: {cacheKeyPrefix}:{key}
getGroupId() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getHeadImgUrl() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getHeadimgurl() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
getHelper() - 类 中的静态方法org.kangspace.wechat.config.WeChatApiUrlConfigHelper
 
getHelper() - 类 中的静态方法org.kangspace.wechat.config.WeChatErrorConfigHelper
 
getHttpMethod(String, String, Map<String, String>, Map<String, String>) - 类 中的方法org.kangspace.wechat.util.http.MyHttpClient
方法说明:获取Method对象[PostMethod,GETMethod...]
getJsApiSign(JSApiTicketSignBean) - 类 中的静态方法org.kangspace.wechat.mp.MpInterfaceAccess
JsApi权限验证获取sign 获得jsapi_ticket之后,就可以生成JS-SDK权限验证的签名了。
getJsApiTicket() - 类 中的方法org.kangspace.wechat.mp.JSApiTicketSignBean
 
getJsApiTicket(String) - 类 中的方法org.kangspace.wechat.mp.MpInterfaceAccess
获取jsApiTicket 1.参考以下文档获取access_token(有效期7200秒,开发者必须在自己的服务全局缓存access_token):../15/54ce45d8d30b6bf6758f68d2e95bc627.html 2.用第一步拿到的access_token 采用http GET方式请求获得jsapi_ticket(有效期7200秒,开发者必须在自己的服务全局缓存jsapi_ticket):https://api.weixin.qq.com/cgi-bin/ticket/getticket?
getKeyword1() - 类 中的方法org.kangspace.wechat.message.NotificationMessageTemplateDataBean
 
getKeyword2() - 类 中的方法org.kangspace.wechat.message.NotificationMessageTemplateDataBean
 
getKeyword3() - 类 中的方法org.kangspace.wechat.message.NotificationMessageTemplateDataBean
 
getKeyword4() - 类 中的方法org.kangspace.wechat.message.FourDataMessageTemplateDataBean
 
getLang() - 类 中的方法org.kangspace.wechat.mp.MpUserInfoBatchParamDTO.UserOpenIdParam
 
getLanguage() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getLock() - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator.RawLock
 
getMessageBean() - 类 中的方法org.kangspace.wechat.message.batch.SendHelper.SendObject
 
getMiniprogram() - 类 中的方法org.kangspace.wechat.message.MessageBean
 
getMpAccesstokenUrl() - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
获取公众号 AccessToken
getMpAccessTokenUrl(String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
获取公众号 AccessToken
getMpJsSdkTicketUrl(String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
获取公众号jssdk jsApiTcket接口 URL
getMpMessageTemplateSendUrl(String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
获取发送模板消息接口 URL
getMpUserInfo(String, String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
获取公众号 获取用户基本信息
getMpUserInfoBatch(String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
获取公众号 批量获取用户基本信息
getMpUserInfoBatch(String, MpUserInfoBatchParamDTO) - 类 中的方法org.kangspace.wechat.mp.MpInterfaceAccess
批量获取用户基本信息(每次最多100条)
getMpUserList(String, String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
获取公众号 获取关注者列表
getMpUserListBatch(String, String, String, Consumer<List<MpUserBasicInfoReturnBean>>, Function<String, String>) - 类 中的方法org.kangspace.wechat.mp.MpInterfaceAccess
批量获取用户列表信息
getMpUserListBatch(String, String, String, Consumer<List<MpUserBasicInfoReturnBean>>, Function<String, String>, Integer) - 类 中的方法org.kangspace.wechat.mp.MpInterfaceAccess
批量获取用户列表信息
getMsgid() - 类 中的方法org.kangspace.wechat.bean.WeChatReturnBean
 
getNextOpenId() - 类 中的方法org.kangspace.wechat.mp.MpUserListReturnBean
 
getNickname() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getNickname() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
getNonceStr() - 类 中的方法org.kangspace.wechat.mp.JSApiTicketSignBean
 
getNonceStr() - 类 中的静态方法org.kangspace.wechat.util.encryption.Sha1Util
获取随机串
getNotNullValue(String) - 类 中的静态方法org.kangspace.wechat.config.WeChatApiUrlConfigHelper
 
getoAth2InterfaceAccess() - 类 中的方法org.kangspace.wechat.endpoint.WeChatController
 
getOAth2UserInfoUrl(String, String, String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
获取网页授权用户信息URL
getOauth2AccessTokenUrl(String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
获取网页授权AccessToken URL
getOauth2AccessTokenUrl(String, String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
获取网页授权AccessToken URL
getOauth2AuthorizeUrl(String, WeChatConfig.OAth2Scope, String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
获取网页授权URL,默认微信APP_ID redirect将被URLEncode
getOauth2AuthorizeUrl(String, String, WeChatConfig.OAth2Scope, String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig
获取网页授权URL redirect将被URLEncode
getOpenId() - 类 中的方法org.kangspace.wechat.message.batch.SendHelper.SendObject
 
getOpenId() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getOpenId() - 类 中的方法org.kangspace.wechat.mp.MpUserInfoBatchParamDTO.UserOpenIdParam
 
getOpenId() - 类 中的方法org.kangspace.wechat.mp.MpUserListReturnBean.UserListData
 
getOpenid() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2AccessTokenReturnBean
 
getOpenId(String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2InterfaceAccess
通过code获取openId
getOpenId(String, String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2InterfaceAccess
通过code获取openId
getOpenid() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
getPagepath() - 类 中的方法org.kangspace.wechat.message.MessageBean.Miniprogram
 
getPrivilege() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
getProjectPath(HttpServletRequest) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
获取项目路径
getProvince() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getProvince() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
getQrScene() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getQrSceneStr() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getRaw(String) - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
更具appId获取原始信息
getRaw(String) - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
更具appId获取原始信息
getRaw(String) - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator
 
getRaw(String) - 类 中的方法org.kangspace.wechat.cache.WeChatAccessTokenCache
 
getRaw(String) - 接口 中的方法org.kangspace.wechat.cache.WeChatCacheOperator
获取原始数据
getRaw(String) - 类 中的方法org.kangspace.wechat.cache.WeChatJsApiTicketCache
 
getRawKey(RedisTemplate<K, ?>, Object) - 类 中的静态方法org.kangspace.wechat.cache.RedisTemplateOperationsUtil
 
getRawLock(String) - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
 
getRawLock(String) - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator
获取原始数据时的分布式锁,只有获取到锁的记录更新数据; 该锁应该为带超时时间的分布式锁
getRefreshToken() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2AccessTokenReturnBean
 
getRemark() - 类 中的方法org.kangspace.wechat.message.MessageTemplateDataBean
 
getRemark() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getRequestPath(HttpServletRequest) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
 
getReturnBean() - 异常错误 中的方法org.kangspace.wechat.util.AccessTokenInvalidException
 
getScope() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2AccessTokenReturnBean
 
getSendExecutorServices() - 类 中的静态方法org.kangspace.wechat.message.batch.SendExecutorServices
获取 ExecutorService 对象
getSendExecutorServices(int) - 类 中的静态方法org.kangspace.wechat.message.batch.SendExecutorServices
获取 ExecutorService 对象
getSex() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getSex() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
getSha1(String) - 类 中的静态方法org.kangspace.wechat.util.encryption.Sha1Util
 
getSign() - 类 中的方法org.kangspace.wechat.mp.JSApiTicketSignBean
 
getSubscribe() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getSubscribeScene() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getSubscribeTime() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getTagidList() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getTemplateId() - 类 中的方法org.kangspace.wechat.message.batch.SendHelper.SendObject
 
getTemplateId() - 类 中的方法org.kangspace.wechat.message.MessageBean
 
getTemplateIdByKey(String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig.MessageTemplateIdHelper
通过key获取模版Id
getTemplateIds() - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig.MessageTemplateIdHelper
获取所有已配置的模版id
getTemplateIdsMap() - 类 中的静态方法org.kangspace.wechat.config.WeChatConfig.MessageTemplateIdHelper
获取所有key templateId Map
getTicket() - 类 中的方法org.kangspace.wechat.mp.JSApiTicketReturnBean
 
getTimestamp() - 类 中的方法org.kangspace.wechat.mp.JSApiTicketSignBean
 
getTimeStamp() - 类 中的静态方法org.kangspace.wechat.util.encryption.Sha1Util
 
getTotal() - 类 中的方法org.kangspace.wechat.mp.MpUserListReturnBean
 
getTouser() - 类 中的方法org.kangspace.wechat.message.MessageBean
 
getUnionId() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
getUnionid() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
getUrl() - 类 中的方法org.kangspace.wechat.message.MessageBean
 
getUrl() - 类 中的方法org.kangspace.wechat.mp.JSApiTicketSignBean
 
getUserInfo(String, String) - 类 中的方法org.kangspace.wechat.mp.MpInterfaceAccess
获取用户基本信息
getUserInfo(String, String, Lang) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2InterfaceAccess
拉取用户信息(需scope为 snsapi_userinfo)
getUserInfoList() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoBatchReturnBean
 
getUserList(String, String) - 类 中的方法org.kangspace.wechat.mp.MpInterfaceAccess
获取用户列表信息
getUserList() - 类 中的方法org.kangspace.wechat.mp.MpUserInfoBatchParamDTO
 
getUserNickNameAndHeadImg(String, String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2InterfaceAccess
获取用户头像和昵称
getValByAppId(String) - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
获取App的缓存
getValByAppId(String) - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
获取App的缓存
getValByDefaultKey() - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
获取默认缓存具体值
getValue() - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator.ExpireValue
 
getValue(String) - 类 中的静态方法org.kangspace.wechat.config.WeChatApiUrlConfigHelper
获取配置值,若配置不存在不抛出异常
getValue(String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfigHelper
 
getValue(String) - 类 中的静态方法org.kangspace.wechat.config.WeChatErrorConfigHelper
 
getValue() - 类 中的方法org.kangspace.wechat.message.MessageTemplateDataValueColorBean
 
getValue(String) - 类 中的方法org.kangspace.wechat.util.ConfigHelper
通过key获取配置文件信息 支持文件热加载
getValueNoException(String) - 类 中的方法org.kangspace.wechat.util.ConfigHelper
通过key获取配置文件信息,若key不存在则不抛出异常
getValueWithoutException(String) - 类 中的静态方法org.kangspace.wechat.config.WeChatErrorConfigHelper
获取配置值,若配置不存在不抛出异常
getWxJsApiTicketCache() - 类 中的方法org.kangspace.wechat.endpoint.WeChatController
 
getWXJSSDKSign(String, String) - 类 中的方法org.kangspace.wechat.endpoint.WeChatController
获取微信jssdk签名信息 jssign/{appId}
GsonUtil - org.kangspace.wechat.util中的类
 
GsonUtil() - 类 的构造器org.kangspace.wechat.util.GsonUtil
 

H

HTTP_PROTOCOL - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpUtil
 
HttpMethod - org.kangspace.wechat.util.http中的枚举
 
httpsRequest(String, HttpMethod, String) - 类 中的静态方法org.kangspace.wechat.util.http.MyHttpsClient
发起https请求并获取结果

I

isAccessTokenInvalid(WeChatReturnBean) - 类 中的静态方法org.kangspace.wechat.bean.WeChatReturnBean
access_token是否过期
isAJAX(HttpServletRequest) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
 
isExecutorServiceNotNull() - 类 中的静态方法org.kangspace.wechat.message.batch.SendExecutorServices
executorService 是否已实例化
isIE(HttpServletRequest) - 类 中的方法org.kangspace.wechat.util.WebUtil
 
isJSON(String) - 类 中的静态方法org.kangspace.wechat.util.CommonUtils
是否为json字符串
isSuccess() - 类 中的方法org.kangspace.wechat.bean.WeChatReturnBean
 
isSuccess(WeChatReturnBean) - 类 中的静态方法org.kangspace.wechat.bean.WeChatReturnBean
 
isWeChatBroswer(HttpServletRequest) - 类 中的静态方法org.kangspace.wechat.util.WeChatUtil
是否为微信浏览器请求
isWeiXinBroswer(HttpServletRequest) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
是否为微信浏览器请求

J

JacksonParseException() - 异常错误 的构造器org.kangspace.wechat.util.JacksonParser.JacksonParseException
 
JacksonParseException(String) - 异常错误 的构造器org.kangspace.wechat.util.JacksonParser.JacksonParseException
 
JacksonParseException(String, Throwable) - 异常错误 的构造器org.kangspace.wechat.util.JacksonParser.JacksonParseException
 
JacksonParseException(Throwable) - 异常错误 的构造器org.kangspace.wechat.util.JacksonParser.JacksonParseException
 
JacksonParser - org.kangspace.wechat.util中的类
jackson-json工具类
JacksonParser() - 类 的构造器org.kangspace.wechat.util.JacksonParser
 
JacksonParser.JacksonParseException - org.kangspace.wechat.util中的异常错误
 
JacksonParser.UnixTimestampDeserializer - org.kangspace.wechat.util中的类
Unix 时间戳日期转换
JSApiTicketReturnBean - org.kangspace.wechat.mp中的类
 
JSApiTicketReturnBean() - 类 的构造器org.kangspace.wechat.mp.JSApiTicketReturnBean
 
JSApiTicketSignBean - org.kangspace.wechat.mp中的类
 
JSApiTicketSignBean() - 类 的构造器org.kangspace.wechat.mp.JSApiTicketSignBean
 

L

Lang - org.kangspace.wechat.bean中的枚举
 

M

main(String[]) - 类 中的静态方法org.kangspace.wechat.util.encryption.MD5
 
MAX_BATCH_SIZE - 类 中的静态变量org.kangspace.wechat.mp.MpUserInfoBatchParamDTO
每次最大数据条数
MAX_FETCH_COUNT - 类 中的静态变量org.kangspace.wechat.mp.MpUserListReturnBean
 
MD5 - org.kangspace.wechat.util.encryption中的类
 
MD5() - 类 的构造器org.kangspace.wechat.util.encryption.MD5
 
md5(String) - 类 中的静态方法org.kangspace.wechat.util.encryption.MD5
 
MessageBean - org.kangspace.wechat.message中的类
 
MessageBean() - 类 的构造器org.kangspace.wechat.message.MessageBean
 
MessageBean.Miniprogram - org.kangspace.wechat.message中的类
小程序参数
MessageFactory - org.kangspace.wechat.message.factory中的接口
通知消息相关工厂类
MessageFactory.FourKeyMessageFactory - org.kangspace.wechat.message.factory中的类
4个key通知消息工厂
MessageFactory.ThreeKeyMessageFactory - org.kangspace.wechat.message.factory中的类
3个key的通知消息工厂
MessageTemplateDataBean - org.kangspace.wechat.message中的类
 
MessageTemplateDataBean() - 类 的构造器org.kangspace.wechat.message.MessageTemplateDataBean
 
MessageTemplateDataBean(MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean) - 类 的构造器org.kangspace.wechat.message.MessageTemplateDataBean
 
MessageTemplateDataValueColorBean - org.kangspace.wechat.message中的类
 
MessageTemplateDataValueColorBean() - 类 的构造器org.kangspace.wechat.message.MessageTemplateDataValueColorBean
 
MessageTemplateDataValueColorBean(String) - 类 的构造器org.kangspace.wechat.message.MessageTemplateDataValueColorBean
 
MessageTemplateDataValueColorBean(String, String) - 类 的构造器org.kangspace.wechat.message.MessageTemplateDataValueColorBean
 
MessageTemplateIdHelper() - 类 的构造器org.kangspace.wechat.config.WeChatConfig.MessageTemplateIdHelper
 
MessageTemplateSender - org.kangspace.wechat.message中的类
 
MessageTemplateSender() - 类 的构造器org.kangspace.wechat.message.MessageTemplateSender
 
Miniprogram() - 类 的构造器org.kangspace.wechat.message.MessageBean.Miniprogram
 
Miniprogram(String, String) - 类 的构造器org.kangspace.wechat.message.MessageBean.Miniprogram
 
MP_ACCESS_TOKEN_URL - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
MP_ACCESS_TOKEN_URL, 公众号ACCESS_TOKEN接口请求链接,从配置文件中获取
MP_JS_SDK_TICKET_URL - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
MP_JS_SDK_TICKET_URL, 公众号jssdk jsApiTcket获取接口接口请求链接,从配置文件中获取
MP_MESSAGE_TEMPLATE_IDS - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
模版id,格式: key:template_id,key2:template_id2... key为自定义的模版类型key,用于程序中获取template_id;template_id为微信模版Id
MP_MESSAGE_TEMPLATE_IDS_MAP - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
模版KeyTemplateId Map
MP_MESSAGE_TEMPLATE_SEND_URL - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
MP_MESSAGE_TEMPLATE_SEND_URL, 发送模板消息接口接口请求链接,从配置文件中获取
MP_TOKENS_CACHE_KEY - 类 中的静态变量org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
token缓存key字符串
MP_TOKENS_CACHE_KEY - 类 中的静态变量org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
token缓存key字符串 格式 {cacheKeyPrefix}{AppID}
MP_USER_INFO_BATCH_URL - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
MP_USER_INFO_BATCH_URL, 批量获取用户基本信息(UnionID机制)接口请求链接,从配置文件中获取
MP_USER_INFO_URL - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
MP_USER_INFO_URL, 获取用户基本信息(UnionID机制)接口请求链接,从配置文件中获取
MP_USER_LIST_URL - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
MP_USER_LIST, 获取关注者列表接口请求链接,从配置文件中获取 取消关注,再次关注时,用户还在列表的原来位置
MpInterfaceAccess - org.kangspace.wechat.mp中的类
 
MpInterfaceAccess() - 类 的构造器org.kangspace.wechat.mp.MpInterfaceAccess
 
MpUserBasicInfoBatchReturnBean - org.kangspace.wechat.mp中的类
获取关注着列表返回bean
MpUserBasicInfoBatchReturnBean() - 类 的构造器org.kangspace.wechat.mp.MpUserBasicInfoBatchReturnBean
 
MpUserBasicInfoReturnBean - org.kangspace.wechat.mp中的类
获取关注着列表返回bean
MpUserBasicInfoReturnBean() - 类 的构造器org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
MpUserInfoBatchParamDTO - org.kangspace.wechat.mp中的类
批量获取用户信息输入参数
MpUserInfoBatchParamDTO() - 类 的构造器org.kangspace.wechat.mp.MpUserInfoBatchParamDTO
 
MpUserInfoBatchParamDTO(List<MpUserInfoBatchParamDTO.UserOpenIdParam>) - 类 的构造器org.kangspace.wechat.mp.MpUserInfoBatchParamDTO
 
MpUserInfoBatchParamDTO.UserOpenIdParam - org.kangspace.wechat.mp中的类
 
MpUserListReturnBean - org.kangspace.wechat.mp中的类
获取关注着列表返回bean
MpUserListReturnBean() - 类 的构造器org.kangspace.wechat.mp.MpUserListReturnBean
 
MpUserListReturnBean.UserListData - org.kangspace.wechat.mp中的类
用户列表数据对象
MyAbstractHttp - org.kangspace.wechat.util.http中的接口
 
MyHttpClient - org.kangspace.wechat.util.http中的类
 
MyHttpClient() - 类 的构造器org.kangspace.wechat.util.http.MyHttpClient
 
MyHttpClient(String) - 类 的构造器org.kangspace.wechat.util.http.MyHttpClient
 
MyHttpsClient - org.kangspace.wechat.util.http中的类
 
MyHttpsClient() - 类 的构造器org.kangspace.wechat.util.http.MyHttpsClient
 
MyHttpsClient(String) - 类 的构造器org.kangspace.wechat.util.http.MyHttpsClient
 
MyHttpUtil - org.kangspace.wechat.util.http中的类
 
MyHttpUtil() - 类 的构造器org.kangspace.wechat.util.http.MyHttpUtil
 
MyX509TrustManager - org.kangspace.wechat.util.http中的类
证书信任管理器(用于https请求)
MyX509TrustManager() - 类 的构造器org.kangspace.wechat.util.http.MyX509TrustManager
 

N

NotificationMessageTemplateDataBean - org.kangspace.wechat.message中的类
 
NotificationMessageTemplateDataBean() - 类 的构造器org.kangspace.wechat.message.NotificationMessageTemplateDataBean
 
NotificationMessageTemplateDataBean(MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean) - 类 的构造器org.kangspace.wechat.message.NotificationMessageTemplateDataBean
 
NotificationMessageTemplateDataBean(MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean, MessageTemplateDataValueColorBean) - 类 的构造器org.kangspace.wechat.message.NotificationMessageTemplateDataBean
 
NULL_APP_ID_SECRET - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
空APP_ID_SECRET对象

O

OAUTH2_ACCESS_TOKEN_URL - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
OAUTH2_ACCESS_TOKEN_URL, 网页授权获取ACCESS_TOKEN接口请求链接,从配置文件中获取
OAUTH2_AUTHORIZE_URL - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
OAUTH2_AUTHORIZE_URL, 网页授权接口请求链接,从配置文件中获取
OAUTH2_USER_INFO_URL - 类 中的静态变量org.kangspace.wechat.config.WeChatConfig
OAUTH2_USER_INFO_URL, 网页授权获取用户信息接口请求链接,从配置文件中获取
OAuth2AccessTokenReturnBean - org.kangspace.wechat.oauth2中的类
 
OAuth2AccessTokenReturnBean() - 类 的构造器org.kangspace.wechat.oauth2.OAuth2AccessTokenReturnBean
 
OAuth2InterfaceAccess - org.kangspace.wechat.oauth2中的类
 
OAuth2InterfaceAccess() - 类 的构造器org.kangspace.wechat.oauth2.OAuth2InterfaceAccess
 
OAuth2UserInfoReturnBean - org.kangspace.wechat.oauth2中的类
 
OAuth2UserInfoReturnBean() - 类 的构造器org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
org.kangspace.wechat.bean - 程序包 org.kangspace.wechat.bean
 
org.kangspace.wechat.cache - 程序包 org.kangspace.wechat.cache
缓存相关实现包 创建微信公众号access_token缓存类: new WeChatAccessTokenCache() 创建微信公众号js_api_ticket缓存类: new WeChatJsApiTicketCache() 创建微信公众号其他token缓存类需实现extend AbstractRedisWeChatCacheOperator()
org.kangspace.wechat.config - 程序包 org.kangspace.wechat.config
配置相关包 含常量,微信相关API URL及其他配置 properties文件读取
org.kangspace.wechat.endpoint - 程序包 org.kangspace.wechat.endpoint
 
org.kangspace.wechat.message - 程序包 org.kangspace.wechat.message
消息相关包 含模版消息
对象: MessageBean 模版post消息实体 MessageTemplateDataBean 模版post消息体中 data实体 MessageTemplateDataValueColorBean 模版post消息体中 data实体中字段实体 NotificationMessageTemplateDataBean 通知类(3个字段) 模版post消息体中 data实体 FourDataMessageTemplateDataBean 4个字段类模版 模版post消息体中 data实体 接口: 发送模版消息: new MessageTemplateSender.send();
org.kangspace.wechat.message.batch - 程序包 org.kangspace.wechat.message.batch
批量消息处理相关包 含模版消息
使用线程池,默认最大线程数10 对象: 发送模版消息: new SendHelper().send();
org.kangspace.wechat.message.factory - 程序包 org.kangspace.wechat.message.factory
 
org.kangspace.wechat.mp - 程序包 org.kangspace.wechat.mp
公众号接口相关包 对象: AccessTokenReturnBean accessToken接口返回数据实体类 MpInterfaceAccess 公众号接口操作类 接口: 获取公众号AccessToken: new MpInterfaceAccess().getAccessToken() 获取公众号JSApiTicket: new MpInterfaceAccess().getJsApiTicket() 获取公众号JSApiSign: MpInterfaceAccess.getJsApiSign()
org.kangspace.wechat.oauth2 - 程序包 org.kangspace.wechat.oauth2
网页授权相关包 接口: 跳转到网页授权地址 new OAuth2InterfaceAccess().redirectToAuthorizeUrl(); 获取网页授权AccessToken,含openId new OAuth2InterfaceAccess().getAccessToken()
org.kangspace.wechat.util - 程序包 org.kangspace.wechat.util
所需工具类 1.
org.kangspace.wechat.util.encryption - 程序包 org.kangspace.wechat.util.encryption
 
org.kangspace.wechat.util.http - 程序包 org.kangspace.wechat.util.http
 
org.kangspace.wechat.util.jdk18 - 程序包 org.kangspace.wechat.util.jdk18
 

P

post(String, String) - 接口 中的方法org.kangspace.wechat.util.http.MyAbstractHttp
POST 请求
post(String) - 接口 中的方法org.kangspace.wechat.util.http.MyAbstractHttp
POST 请求
POST - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpClient
 
post(String, Map<String, String>, Map<String, String>) - 类 中的方法org.kangspace.wechat.util.http.MyHttpClient
方法说明:HttpClient Post请求 开发时间:2015年3月16日上午11:05:43 开发人员:Kang
post(String, Map<String, String>) - 类 中的方法org.kangspace.wechat.util.http.MyHttpClient
方法说明:HttpClient Post请求 开发时间:2015年3月16日上午11:32:25 开发人员:Kang
post(String) - 类 中的方法org.kangspace.wechat.util.http.MyHttpClient
 
post(String, String) - 类 中的方法org.kangspace.wechat.util.http.MyHttpClient
 
POST - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpsClient
 
post(String, String) - 类 中的方法org.kangspace.wechat.util.http.MyHttpsClient
 
post(String) - 类 中的方法org.kangspace.wechat.util.http.MyHttpsClient
 
PUT - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpClient
 
PUT - 类 中的静态变量org.kangspace.wechat.util.http.MyHttpsClient
 

R

RawLock() - 类 的构造器org.kangspace.wechat.cache.AbstractWeChatCacheOperator.RawLock
 
rawValue(RedisTemplate<K, ?>, Object) - 类 中的静态方法org.kangspace.wechat.cache.RedisTemplateOperationsUtil
 
redirectRequest(String, HttpServletRequest, HttpServletResponse) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
 
redirectToAuthorizeUrl(String, String, HttpServletRequest, HttpServletResponse) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2InterfaceAccess
302重定向跳转到网页授权
redirectToAuthorizeUrl(String, String, String, HttpServletRequest, HttpServletResponse) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2InterfaceAccess
302重定向跳转到网页授权
redirectToAuthorizeUrl(String, String, String, WeChatConfig.OAth2Scope, HttpServletRequest, HttpServletResponse) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2InterfaceAccess
302重定向跳转到网页授权
RedisTemplateOperationsUtil - org.kangspace.wechat.cache中的类
RedisTemplateOperationsUtil() - 类 的构造器org.kangspace.wechat.cache.RedisTemplateOperationsUtil
 
refresh(String, String) - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator
通过默认key刷新缓存
refreshByAppId(String) - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
通过默认key刷新缓存
refreshByAppId(String) - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
通过默认key刷新缓存
refreshByDefaultKey() - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
通过默认key刷新缓存
refreshCache(String, String) - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
 
refreshCache(String, String) - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
 
refreshCache(String, String) - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator
 
refreshCache(String, String) - 接口 中的方法org.kangspace.wechat.cache.WeChatCacheOperator
刷新缓存
releaseLock() - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator.RawLock
解锁
removeCache(String, String) - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
 
removeCache(String, String) - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
 
removeCache(String, String) - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator
 
removeCache(String, String) - 接口 中的方法org.kangspace.wechat.cache.WeChatCacheOperator
删除缓存
retrieveTokenRetry(String, WeChatReturnBean, Function<String, String>, Function<String, T>) - 类 中的方法org.kangspace.wechat.bean.WeChatCapableRetrieveToken
token过期时,重新获取token再次发次请求方法

S

saveCache(String, String, T, Long) - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
 
saveCache(String, String, T, Long) - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
 
saveCache(String, String, T, Long) - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator
 
saveCache(String, String, T, Long) - 接口 中的方法org.kangspace.wechat.cache.WeChatCacheOperator
保存缓存信息
send(String, SendHelper.SendObject) - 类 中的静态方法org.kangspace.wechat.message.batch.SendHelper
发送消息
send(String, SendHelper.SendObject, Function<String, String>) - 类 中的静态方法org.kangspace.wechat.message.batch.SendHelper
发送消息
send(MessageBean, String) - 类 中的方法org.kangspace.wechat.message.MessageTemplateSender
发送模版消息 需提前刷新accessToken
sendError(int, HttpServletResponse) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
 
SendExecutorServices - org.kangspace.wechat.message.batch中的类
 
SendHelper - org.kangspace.wechat.message.batch中的类
 
SendHelper() - 类 的构造器org.kangspace.wechat.message.batch.SendHelper
 
SendHelper.SendObject - org.kangspace.wechat.message.batch中的类
消息发送对象实体
SendObject() - 类 的构造器org.kangspace.wechat.message.batch.SendHelper.SendObject
 
SendObject(String, MessageBean, String, String) - 类 的构造器org.kangspace.wechat.message.batch.SendHelper.SendObject
 
SendObject(String, MessageBean, String, String, String) - 类 的构造器org.kangspace.wechat.message.batch.SendHelper.SendObject
 
setAccessToken(String) - 类 中的方法org.kangspace.wechat.message.batch.SendHelper.SendObject
 
setAccessToken(String) - 类 中的方法org.kangspace.wechat.mp.AccessTokenReturnBean
 
setAccessToken(String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2AccessTokenReturnBean
 
setAppId(String) - 类 中的方法org.kangspace.wechat.config.WeChatConfig.AppIdSecret
 
setAppId(String) - 类 中的方法org.kangspace.wechat.message.batch.SendHelper.SendObject
 
setAppid(String) - 类 中的方法org.kangspace.wechat.message.MessageBean.Miniprogram
 
setAppId(String) - 类 中的方法org.kangspace.wechat.mp.JSApiTicketSignBean
 
setAppSecret(String) - 类 中的方法org.kangspace.wechat.config.WeChatConfig.AppIdSecret
 
setCacheKeyPrefix(String) - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
 
setCacheKeyPrefix(String) - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
 
setCity(String) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setCity(String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
setColor(String) - 类 中的方法org.kangspace.wechat.message.MessageTemplateDataValueColorBean
 
setContentType(String) - 类 中的方法org.kangspace.wechat.util.http.MyHttpClient
 
setContentType(String) - 类 中的方法org.kangspace.wechat.util.http.MyHttpsClient
 
setCookie(HttpServletResponse, String, String, String, String, int, boolean) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
设置cookie
setCount(Integer) - 类 中的方法org.kangspace.wechat.mp.MpUserListReturnBean
 
setCountry(String) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setCountry(String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
setcTime(Date) - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator.ExpireValue
 
setData(MessageTemplateDataBean) - 类 中的方法org.kangspace.wechat.message.MessageBean
 
setData(MpUserListReturnBean.UserListData) - 类 中的方法org.kangspace.wechat.mp.MpUserListReturnBean
 
setDefaultByteSize(int) - 类 中的方法org.kangspace.wechat.util.http.MyHttpClient
 
setDefaultByteSize(int) - 类 中的方法org.kangspace.wechat.util.http.MyHttpsClient
 
setErrcode(Integer) - 类 中的方法org.kangspace.wechat.bean.WeChatReturnBean
 
setErrmsg(String) - 类 中的方法org.kangspace.wechat.bean.WeChatReturnBean
 
setExpiresIn(Integer) - 类 中的方法org.kangspace.wechat.mp.AccessTokenReturnBean
 
setExpiresIn(Integer) - 类 中的方法org.kangspace.wechat.mp.JSApiTicketReturnBean
 
setExpiresIn(long) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2AccessTokenReturnBean
 
setExpiresSeconds(Long) - 类 中的方法org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
 
setExpiresSeconds(Long) - 类 中的方法org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
 
setExpiresSeconds(Long) - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator.ExpireValue
 
setFirst(MessageTemplateDataValueColorBean) - 类 中的方法org.kangspace.wechat.message.MessageTemplateDataBean
 
setGroupId(int) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setHeadImgUrl(String) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setHeadimgurl(String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
setIfAbsent(RedisTemplate<K, ?>, K, V, long, TimeUnit) - 类 中的静态方法org.kangspace.wechat.cache.RedisTemplateOperationsUtil
当key不存在时设置值
setJsApiTicket(String) - 类 中的方法org.kangspace.wechat.mp.JSApiTicketSignBean
 
setKeyword1(MessageTemplateDataValueColorBean) - 类 中的方法org.kangspace.wechat.message.NotificationMessageTemplateDataBean
 
setKeyword2(MessageTemplateDataValueColorBean) - 类 中的方法org.kangspace.wechat.message.NotificationMessageTemplateDataBean
 
setKeyword3(MessageTemplateDataValueColorBean) - 类 中的方法org.kangspace.wechat.message.NotificationMessageTemplateDataBean
 
setKeyword4(MessageTemplateDataValueColorBean) - 类 中的方法org.kangspace.wechat.message.FourDataMessageTemplateDataBean
 
setLang(String) - 类 中的方法org.kangspace.wechat.mp.MpUserInfoBatchParamDTO.UserOpenIdParam
 
setLanguage(String) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setLock(Boolean) - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator.RawLock
 
setMessageBean(MessageBean) - 类 中的方法org.kangspace.wechat.message.batch.SendHelper.SendObject
 
setMiniprogram(MessageBean.Miniprogram) - 类 中的方法org.kangspace.wechat.message.MessageBean
 
setMsgid(String) - 类 中的方法org.kangspace.wechat.bean.WeChatReturnBean
 
setNextOpenId(String) - 类 中的方法org.kangspace.wechat.mp.MpUserListReturnBean
 
setNickname(String) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setNickname(String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
setNonceStr(String) - 类 中的方法org.kangspace.wechat.mp.JSApiTicketSignBean
 
setoAth2InterfaceAccess(OAuth2InterfaceAccess) - 类 中的方法org.kangspace.wechat.endpoint.WeChatController
 
setOpenId(String) - 类 中的方法org.kangspace.wechat.message.batch.SendHelper.SendObject
 
setOpenId(String) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setOpenId(String) - 类 中的方法org.kangspace.wechat.mp.MpUserInfoBatchParamDTO.UserOpenIdParam
 
setOpenId(List<String>) - 类 中的方法org.kangspace.wechat.mp.MpUserListReturnBean.UserListData
 
setOpenid(String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2AccessTokenReturnBean
 
setOpenid(String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
setPagepath(String) - 类 中的方法org.kangspace.wechat.message.MessageBean.Miniprogram
 
setPrivilege(String[]) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
setProvince(String) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setProvince(String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
setQrScene(int) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setQrSceneStr(String) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setRedirectURL(HttpServletRequest, String) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
 
setRefreshToken(String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2AccessTokenReturnBean
 
setRemark(MessageTemplateDataValueColorBean) - 类 中的方法org.kangspace.wechat.message.MessageTemplateDataBean
 
setRemark(String) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setReturnBean(WeChatReturnBean) - 异常错误 中的方法org.kangspace.wechat.util.AccessTokenInvalidException
 
setScope(String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2AccessTokenReturnBean
 
setSex(int) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setSex(String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
setSign(String) - 类 中的方法org.kangspace.wechat.mp.JSApiTicketSignBean
 
setSubscribe(int) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setSubscribeScene(String) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setSubscribeTime(Date) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setTagidList(List<Integer>) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setTemplateId(String) - 类 中的方法org.kangspace.wechat.message.batch.SendHelper.SendObject
 
setTemplateId(String) - 类 中的方法org.kangspace.wechat.message.MessageBean
 
setTicket(String) - 类 中的方法org.kangspace.wechat.mp.JSApiTicketReturnBean
 
setTimestamp(String) - 类 中的方法org.kangspace.wechat.mp.JSApiTicketSignBean
 
setTotal(Integer) - 类 中的方法org.kangspace.wechat.mp.MpUserListReturnBean
 
setTouser(String) - 类 中的方法org.kangspace.wechat.message.MessageBean
 
setUnionId(String) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
setUnionid(String) - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 
setUrl(String) - 类 中的方法org.kangspace.wechat.message.MessageBean
 
setUrl(String) - 类 中的方法org.kangspace.wechat.mp.JSApiTicketSignBean
 
setUserInfoList(List<MpUserBasicInfoReturnBean>) - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoBatchReturnBean
 
setUserList(List<MpUserInfoBatchParamDTO.UserOpenIdParam>) - 类 中的方法org.kangspace.wechat.mp.MpUserInfoBatchParamDTO
 
setValue(T) - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator.ExpireValue
 
setValue(String) - 类 中的方法org.kangspace.wechat.message.MessageTemplateDataValueColorBean
 
setWxJsApiTicketCache(WeChatJsApiTicketCache) - 类 中的方法org.kangspace.wechat.endpoint.WeChatController
 
Sha1Util - org.kangspace.wechat.util.encryption中的类
 
Sha1Util() - 类 的构造器org.kangspace.wechat.util.encryption.Sha1Util
 
shutdown(Boolean) - 类 中的静态方法org.kangspace.wechat.message.batch.SendExecutorServices
关闭线程池

T

TEN_SECONDS - 类 中的静态变量org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
 
TEN_SECONDS - 类 中的静态变量org.kangspace.wechat.cache.AbstractRedisWeChatCacheOperator
 
ThreeKeyMessageFactory() - 类 的构造器org.kangspace.wechat.message.factory.MessageFactory.ThreeKeyMessageFactory
 
toBean(String, Class<T>) - 类 中的静态方法org.kangspace.wechat.util.GsonUtil
转换无泛型对象
toBean(String, Class<T>, Type...) - 类 中的静态方法org.kangspace.wechat.util.GsonUtil
转换有泛型对象
toJsonString(Object) - 类 中的静态方法org.kangspace.wechat.util.JacksonParser
对象转json字符串
toObject(String, Class<T>) - 类 中的静态方法org.kangspace.wechat.util.JacksonParser
对象转json字符串
toString() - 枚举 中的方法org.kangspace.wechat.bean.Lang
 
toString() - 类 中的方法org.kangspace.wechat.bean.WeChatReturnBean
 
toString() - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator.ExpireValue
 
toString() - 类 中的方法org.kangspace.wechat.cache.AbstractWeChatCacheOperator.RawLock
 
toString() - 类 中的方法org.kangspace.wechat.config.WeChatConfig.AppIdSecret
 
toString() - 类 中的方法org.kangspace.wechat.message.batch.SendHelper.SendObject
 
toString() - 类 中的方法org.kangspace.wechat.message.FourDataMessageTemplateDataBean
 
toString() - 类 中的方法org.kangspace.wechat.message.MessageBean.Miniprogram
 
toString() - 类 中的方法org.kangspace.wechat.message.MessageBean
 
toString() - 类 中的方法org.kangspace.wechat.message.MessageTemplateDataBean
 
toString() - 类 中的方法org.kangspace.wechat.message.MessageTemplateDataValueColorBean
 
toString() - 类 中的方法org.kangspace.wechat.message.NotificationMessageTemplateDataBean
 
toString() - 类 中的方法org.kangspace.wechat.mp.AccessTokenReturnBean
 
toString() - 类 中的方法org.kangspace.wechat.mp.JSApiTicketReturnBean
 
toString() - 类 中的方法org.kangspace.wechat.mp.JSApiTicketSignBean
 
toString() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoBatchReturnBean
 
toString() - 类 中的方法org.kangspace.wechat.mp.MpUserBasicInfoReturnBean
 
toString() - 类 中的方法org.kangspace.wechat.mp.MpUserInfoBatchParamDTO
 
toString() - 类 中的方法org.kangspace.wechat.mp.MpUserInfoBatchParamDTO.UserOpenIdParam
 
toString() - 类 中的方法org.kangspace.wechat.mp.MpUserListReturnBean
 
toString() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2AccessTokenReturnBean
 
toString() - 类 中的方法org.kangspace.wechat.oauth2.OAuth2UserInfoReturnBean
 

U

UnixTimestampDeserializer() - 类 的构造器org.kangspace.wechat.util.JacksonParser.UnixTimestampDeserializer
 
urlDecode(String) - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
 
urlEncode(String) - 类 中的静态方法org.kangspace.wechat.util.encryption.CodecUtil
 
UserListData() - 类 的构造器org.kangspace.wechat.mp.MpUserListReturnBean.UserListData
 
UserOpenIdParam() - 类 的构造器org.kangspace.wechat.mp.MpUserInfoBatchParamDTO.UserOpenIdParam
 
UserOpenIdParam(String) - 类 的构造器org.kangspace.wechat.mp.MpUserInfoBatchParamDTO.UserOpenIdParam
 
UserOpenIdParam(String, String) - 类 的构造器org.kangspace.wechat.mp.MpUserInfoBatchParamDTO.UserOpenIdParam
 

V

validIsWeiXinBroswer(HttpServletRequest) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
是否为微信浏览器请求
value(String) - 类 中的静态方法org.kangspace.wechat.config.WeChatConfigHelper
通过key获取微信配置文件信息
valueOf(String) - 枚举 中的静态方法org.kangspace.wechat.bean.Lang
返回带有指定名称的该类型的枚举常量。
valueOf(String) - 枚举 中的静态方法org.kangspace.wechat.config.WeChatConfig.OAth2Scope
返回带有指定名称的该类型的枚举常量。
valueOf(String) - 枚举 中的静态方法org.kangspace.wechat.util.encryption.AES.EncryptAESType
返回带有指定名称的该类型的枚举常量。
valueOf(String) - 枚举 中的静态方法org.kangspace.wechat.util.http.HttpMethod
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法org.kangspace.wechat.bean.Lang
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
values() - 枚举 中的静态方法org.kangspace.wechat.config.WeChatConfig.OAth2Scope
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
values() - 枚举 中的静态方法org.kangspace.wechat.util.encryption.AES.EncryptAESType
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
values() - 枚举 中的静态方法org.kangspace.wechat.util.http.HttpMethod
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。

W

WebUtil - org.kangspace.wechat.util中的类
 
WebUtil() - 类 的构造器org.kangspace.wechat.util.WebUtil
 
WeChatAccessTokenCache - org.kangspace.wechat.cache中的类
微信公众号AccessToken缓存类
WeChatAccessTokenCache(String, Long) - 类 的构造器org.kangspace.wechat.cache.WeChatAccessTokenCache
 
WeChatAccessTokenCache() - 类 的构造器org.kangspace.wechat.cache.WeChatAccessTokenCache
 
WeChatApiUrlConfigHelper - org.kangspace.wechat.config中的类
 
WeChatApiUrlConfigHelper() - 类 的构造器org.kangspace.wechat.config.WeChatApiUrlConfigHelper
 
WeChatCacheOperator<T,V> - org.kangspace.wechat.cache中的接口
微信相关缓存接口
WeChatCapableRetrieveToken - org.kangspace.wechat.bean中的类
重新获取token接口 提供token过期重新获取token方法
WeChatCapableRetrieveToken() - 类 的构造器org.kangspace.wechat.bean.WeChatCapableRetrieveToken
 
WeChatConfig - org.kangspace.wechat.config中的类
 
WeChatConfig() - 类 的构造器org.kangspace.wechat.config.WeChatConfig
 
WeChatConfig.AppIdSecret - org.kangspace.wechat.config中的类
AppId,AppSecret组合对象
WeChatConfig.MessageTemplateIdHelper - org.kangspace.wechat.config中的类
消息模版Id帮助类
WeChatConfig.OAth2Scope - org.kangspace.wechat.config中的枚举
网页授权 作用域
WeChatConfigHelper - org.kangspace.wechat.config中的类
 
WeChatConfigHelper() - 类 的构造器org.kangspace.wechat.config.WeChatConfigHelper
 
WeChatController - org.kangspace.wechat.endpoint中的类
微信相关Controller /api/wechat
WeChatController(WeChatJsApiTicketCache, OAuth2InterfaceAccess) - 类 的构造器org.kangspace.wechat.endpoint.WeChatController
 
WeChatController() - 类 的构造器org.kangspace.wechat.endpoint.WeChatController
 
WeChatErrorConfigHelper - org.kangspace.wechat.config中的类
 
WeChatErrorConfigHelper() - 类 的构造器org.kangspace.wechat.config.WeChatErrorConfigHelper
 
WeChatJsApiTicketCache - org.kangspace.wechat.cache中的类
微信公众号JsApiTicket缓存类
WeChatJsApiTicketCache(String, Long) - 类 的构造器org.kangspace.wechat.cache.WeChatJsApiTicketCache
 
WeChatJsApiTicketCache() - 类 的构造器org.kangspace.wechat.cache.WeChatJsApiTicketCache
 
WeChatReturnBean - org.kangspace.wechat.bean中的类
 
WeChatReturnBean() - 类 的构造器org.kangspace.wechat.bean.WeChatReturnBean
 
WeChatUtil - org.kangspace.wechat.util中的类
 
WeChatUtil() - 类 的构造器org.kangspace.wechat.util.WeChatUtil
 
write(String, HttpServletResponse) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
输出字符串
writeAlertMsg(String, HttpServletResponse) - 类 中的静态方法org.kangspace.wechat.util.WebUtil
输出alert信息

_

_AbstractRedisWeChatCacheOperator<T extends AbstractWeChatCacheOperator.ExpireValue<V>,V> - org.kangspace.wechat.cache中的类
已过时。
_AbstractRedisWeChatCacheOperator() - 类 的构造器org.kangspace.wechat.cache._AbstractRedisWeChatCacheOperator
已过时。
 
A B C D E F G H I J L M N O P R S T U V W _ 
跳过导航链接

Copyright © 2020. All rights reserved.