当前会话是否有效
A、接口使用场景
判断当前会话是否是有效,无效可以调用登录接口、有效可以退出登录。
B、接口方法
public boolean com.tencent.tauth.Tencent.isSessionValid()
C、返回结果
当前的登录状态是否有效
D、示例代码
调用当前会话是否有效接口的示例代码如下:
if (mTencent != null && mTencent.isSessionValid()) { mNewLoginButton.setText("退出账号"); } else { mNewLoginButton.setText("登录"); } |