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

com.mizhousoft.weixin.miniapp.service.WxMiniAppService Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.mizhousoft.weixin.miniapp.service;

import com.mizhousoft.weixin.common.WXException;
import com.mizhousoft.weixin.miniapp.model.WxJscode2SessionResult;

/**
 * 微信小程序服务
 *
 */
public interface WxMiniAppService
{
	// auth.code2Session
	String JSCODE_TO_SESSION_URL = "https://api.weixin.qq.com/sns/jscode2session?appid=%s&secret=%s&js_code=%s&grant_type=authorization_code";

	/**
	 * 获取微信APP ID
	 * 
	 * @return
	 */
	String getAppId();

	/**
	 * 获取登录后的session信息
	 * 
	 * @param jsCode
	 * @return
	 * @throws WXException
	 */
	WxJscode2SessionResult jsCode2Session(String jsCode) throws WXException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy