me.chanjar.weixin.channel.api.impl.WxChannelServiceImpl Maven / Gradle / Ivy
package me.chanjar.weixin.channel.api.impl;
import lombok.extern.slf4j.Slf4j;
/**
* 视频号小店服务实现
*
* @author Zeyes
*/
@Slf4j
public class WxChannelServiceImpl extends WxChannelServiceHttpClientImpl {
/**
* 设置普通模式access_token接口参数
*/
public WxChannelServiceImpl() {
super(false, false);
}
/**
* 设置获取access_token接口参数.
*
* @param stabled false 表示调用普通模式AccessToken接口, true调用稳定模式接口
* @param forceRefresh stabled=true使用, true表示强制刷新模式
*/
public WxChannelServiceImpl(Boolean stabled, Boolean forceRefresh) {
super(stabled, forceRefresh);
}
}