Android - Clear Facebook access token

后端 未结 6 781
隐瞒了意图╮
隐瞒了意图╮ 2021-01-16 07:32

I have a SettingsActivity where there are several options including finding Facebook friends and logging out. So when a user chooses to find her Facebook friend

6条回答
  •  旧时难觅i
    2021-01-16 08:25

    Do like this

    try {
    Session.getActiveSession().closeAndClearTokenInformation();
    } catch (Throwable e) {
    e.printStackTrace();
    }
    

提交回复
热议问题