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

net.sinofool.wechat.mp.WeChatMPAccessTokenStorage Maven / Gradle / Ivy

The newest version!
package net.sinofool.wechat.mp;

public interface WeChatMPAccessTokenStorage {
    void setAccessToken(String token, int expire);

    String getAccessToken();

    void setWebpageAccessToken(String openId, String scope, String token, int expire);

    String getWebpageAccessToken(String openId, String scope);

    void setWebpageRefreshToken(String openId, String scope, String token);

    String getWebpageRefreshToken(String openId, String scope);
    
    void setJSAPITicket(String ticket, int expire);
    
    String getJSAPITicket();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy