Uses of Class
com.belerweb.social.weixin.bean.AccessToken

Packages that use AccessToken
com.belerweb.social.weixin.api   
com.belerweb.social.weixin.bean   
 

Uses of AccessToken in com.belerweb.social.weixin.api
 

Methods in com.belerweb.social.weixin.api that return AccessToken
 AccessToken Weixin.getAccessToken()
          获取access token access_token是公众号的全局唯一票据,公众号调用各接口时都需使用access_token。正常情况下access_token有效期为7200秒, 重复获取将导致上次获取的access_token失效。 公众号可以使用AppID和AppSecret调用本接口来获取access_token。AppID和AppSecret可在开发模式中获得(需要已经成为开发者,且帐号没有异常状态)。
 

Methods in com.belerweb.social.weixin.api that return types with arguments of type AccessToken
 Result<AccessToken> OAuth2.accessToken(String code)
          通过code换取网页授权access_token。从Weixin中获取appId和secret。
 Result<AccessToken> OAuth2.accessToken(String appId, String secret, String code)
          通过code换取网页授权access_token。grantType值为authorization_code。
 Result<AccessToken> OAuth2.accessToken(String appId, String secret, String code, String grantType)
          通过code换取网页授权access_token
 Result<AccessToken> OAuth2.refreshAccessToken(String refreshToken)
          刷新access_token(如果需要)。从Weixin中获取appId
 Result<AccessToken> OAuth2.refreshAccessToken(String appId, String refreshToken)
          刷新access_token(如果需要)
 Result<AccessToken> OAuth2.refreshAccessToken(String appId, String grantType, String refreshToken)
          刷新access_token(如果需要)
 

Uses of AccessToken in com.belerweb.social.weixin.bean
 

Methods in com.belerweb.social.weixin.bean that return AccessToken
static AccessToken AccessToken.parse(org.json.JSONObject jsonObject)
           
 



Copyright © 2014. All Rights Reserved.