public interface WxMaService extends WxService
| 限定符和类型 | 字段和说明 |
|---|---|
static String |
GET_ACCESS_TOKEN_URL
获取access_token.
|
static String |
GET_PAID_UNION_ID_URL
getPaidUnionId
|
static String |
JSCODE_TO_SESSION_URL |
static String |
SET_DYNAMIC_DATA_URL
导入抽样数据
|
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
checkSignature(String timestamp,
String nonce,
String signature)
验证消息的确来自微信服务器.
|
<T,E> T |
execute(RequestExecutor<T,E> executor,
String uri,
E data)
Service没有实现某个API的时候,可以用这个,
比
WxService.get(java.lang.String, java.lang.String)和WxService.post(java.lang.String, java.lang.String)方法更灵活,可以自己构造RequestExecutor用来处理不同的参数和不同的返回类型。 |
String |
getAccessToken()
获取access_token, 不强制刷新access_token.
|
String |
getAccessToken(boolean forceRefresh)
获取access_token,本方法线程安全.
|
WxMaAnalysisService |
getAnalysisService()
数据分析相关查询服务.
|
WxMaCloudService |
getCloudService()
获取云开发接口服务对象
|
WxMaCodeService |
getCodeService()
返回代码操作相关的 API.
|
WxMaExpressService |
getExpressService()
获取物流助手接口服务对象
|
WxMaJsapiService |
getJsapiService()
返回jsapi操作相关的 API服务类对象.
|
WxMaLiveGoodsService |
getLiveGoodsService()
获取直播间商品服务对象
|
WxMaLiveService |
getLiveService()
获取直播接口服务对象
|
WxMaMediaService |
getMediaService()
返回素材相关接口方法的实现类对象,以方便调用其各个接口.
|
WxMaMsgService |
getMsgService()
返回消息(客服消息和模版消息)发送接口方法实现类,以方便调用其各个接口.
|
WxOcrService |
getOcrService()
获取ocr实现接口服务对象
|
String |
getPaidUnionId(String openid,
String transactionId,
String mchId,
String outTradeNo)
用户支付完成后,获取该用户的 UnionId,无需用户授权。
|
WxMaPluginService |
getPluginService()
返回插件相关接口服务对象.
|
WxMaQrcodeService |
getQrcodeService()
返回二维码相关接口方法的实现类对象,以方便调用其各个接口.
|
RequestHttp |
getRequestHttp()
请求http请求相关信息.
|
WxMaRunService |
getRunService()
返回微信运动相关接口服务对象.
|
WxMaSecCheckService |
getSecCheckService()
返回内容安全相关接口服务对象.
|
WxMaSettingService |
getSettingService()
小程序修改服务器地址、成员管理 API.
|
WxMaShareService |
getShareService()
返回分享相关查询服务.
|
WxMaSubscribeService |
getSubscribeService()
返回订阅消息配置相关接口方法的实现类对象, 以方便调用其各个接口.
|
WxMaTemplateService |
getTemplateService()
返回模板配置相关接口方法的实现类对象, 以方便调用其各个接口.
|
WxMaUserService |
getUserService()
返回用户相关接口方法的实现类对象,以方便调用其各个接口.
|
WxMaConfig |
getWxMaConfig()
获取WxMaConfig 对象.
|
void |
initHttp()
初始化http请求对象.
|
WxMaJscode2SessionResult |
jsCode2SessionInfo(String jsCode)
获取登录后的session信息.
|
void |
setDynamicData(int lifespan,
String type,
int scene,
String data)
导入抽样数据
第三方通过调用微信API,将数据写入到setdynamicdata这个API。
|
void |
setMaxRetryTimes(int maxRetryTimes)
设置当微信系统响应系统繁忙时,最大重试次数.
|
void |
setRetrySleepMillis(int retrySleepMillis)
设置当微信系统响应系统繁忙时,要等待多少 retrySleepMillis(ms) * 2^(重试次数 - 1) 再发起重试.
|
void |
setWxMaConfig(WxMaConfig wxConfigProvider)
注入
WxMaConfig 的实现. |
WxMaJscode2SessionResult jsCode2SessionInfo(String jsCode) throws WxErrorException
jsCode - 登录时获取的 codeWxErrorExceptionvoid setDynamicData(int lifespan,
String type,
int scene,
String data)
throws WxErrorException
第三方通过调用微信API,将数据写入到setdynamicdata这个API。每个Post数据包不超过5K,若数据过多可开多进(线)程并发导入数据(例如:数据量为十万量级可以开50个线程并行导数据)。 文档地址:https://wsad.weixin.qq.com/wsad/zh_CN/htmledition/widget-docs-v3/html/custom/quickstart/implement/import/index.html http请求方式:POST http(s)://api.weixin.qq.com/wxa/setdynamicdata?access_token=ACCESS_TOKEN
data - 推送到微信后台的数据列表,该数据被微信用于流量分配,注意该字段为string类型而不是objectlifespan - 数据有效时间,秒为单位,一般为86400,一天一次导入的频率scene - 1代表用于搜索的数据type - 用于标识数据所属的服务类目WxErrorException - .boolean checkSignature(String timestamp, String nonce, String signature)
验证消息的确来自微信服务器. 详情请见: http://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421135319&token=&lang=zh_CN
String getAccessToken() throws WxErrorException
WxErrorExceptiongetAccessToken(boolean)String getAccessToken(boolean forceRefresh) throws WxErrorException
获取access_token,本方法线程安全. 且在多线程同时刷新时只刷新一次,避免超出2000次/日的调用次数上限 另:本service的所有方法都会在access_token过期是调用此方法 程序员在非必要情况下尽量不要主动调用此方法 详情请见: http://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140183&token=&lang=zh_CN
forceRefresh - 强制刷新WxErrorExceptionString getPaidUnionId(String openid, String transactionId, String mchId, String outTradeNo) throws WxErrorException
用户支付完成后,获取该用户的 UnionId,无需用户授权。本接口支持第三方平台代理查询。 注意:调用前需要用户完成支付,且在支付后的五分钟内有效。 请求地址: GET https://api.weixin.qq.com/wxa/getpaidunionid?access_token=ACCESS_TOKEN&openid=OPENID 文档地址:https://developers.weixin.qq.com/miniprogram/dev/api/getPaidUnionId.html
openid - 必填 支付用户唯一标识transactionId - 非必填 微信支付订单号mchId - 非必填 微信支付分配的商户号,和商户订单号配合使用outTradeNo - 非必填 微信支付商户订单号,和商户号配合使用WxErrorException - .<T,E> T execute(RequestExecutor<T,E> executor, String uri, E data) throws WxErrorException
Service没有实现某个API的时候,可以用这个, 比WxService.get(java.lang.String, java.lang.String)和WxService.post(java.lang.String, java.lang.String)方法更灵活,可以自己构造RequestExecutor用来处理不同的参数和不同的返回类型。 可以参考,MediaUploadRequestExecutor的实现方法
E - .T - .data - 参数或请求数据executor - 执行器uri - 接口请求地址WxErrorExceptionvoid setRetrySleepMillis(int retrySleepMillis)
设置当微信系统响应系统繁忙时,要等待多少 retrySleepMillis(ms) * 2^(重试次数 - 1) 再发起重试. 默认:1000ms
retrySleepMillis - 重试等待毫秒数void setMaxRetryTimes(int maxRetryTimes)
设置当微信系统响应系统繁忙时,最大重试次数. 默认:5次
maxRetryTimes - 最大重试次数WxMaConfig getWxMaConfig()
void setWxMaConfig(WxMaConfig wxConfigProvider)
WxMaConfig 的实现.wxConfigProvider - configWxMaMsgService getMsgService()
WxMaMediaService getMediaService()
WxMaUserService getUserService()
WxMaQrcodeService getQrcodeService()
WxMaTemplateService getTemplateService()
WxMaSubscribeService getSubscribeService()
WxMaAnalysisService getAnalysisService()
WxMaCodeService getCodeService()
WxMaJsapiService getJsapiService()
WxMaSettingService getSettingService()
WxMaShareService getShareService()
WxMaRunService getRunService()
WxMaSecCheckService getSecCheckService()
WxMaPluginService getPluginService()
void initHttp()
RequestHttp getRequestHttp()
WxMaExpressService getExpressService()
WxMaCloudService getCloudService()
WxMaLiveService getLiveService()
WxMaLiveGoodsService getLiveGoodsService()
WxOcrService getOcrService()
Copyright © 2020. All rights reserved.