分享到 :

设置token和过期时间

A、接口使用场景
    使用登陆接口登陆成功以后,在登陆的回调接口保存登陆返回的token和过期时间。

B、接口方法
    public void com.tencent.tauth.Tencent.setAccessToken(String token, String expiresIn)

C、接口参数
    调用接口的参数说明如下:

参数参数说明
token登录成功返回的token。
expiresIn登录成功返回的过期时间,单位秒

D、示例代码
    调用设置token和过期时间接口的示例代码如下:

IUiListener loginListener = new BaseUiListener() {
        @Override
         protected void doComplete(JSONObject values) {
             try {
                String token = jsonObject.getString(Constants.PARAM_ACCESS_TOKEN);
                String expires = jsonObject.getString(Constants.PARAM_EXPIRES_IN);
                if (!TextUtils.isEmpty(token) && !TextUtils.isEmpty(expires) ) {
                          mTencent.setAccessToken(token, expires);
                }
          } catch(Exception e) {
          }
      }
};
返回顶部