facebook-android-sdk: Force reauthentication using the sdk 3.0.1 -
is there way trigger reauthentication dialog using facebook-android-sdk
3.0.1? possible using javascript sdk (see https://developers.facebook.com/docs/facebook-login/reauthentication/), haven't found android sdk.
the dialog should triggered when user wants enter "edit profile" section of app.
i used this
session session = session.getactivesession(); if (session != null){ session.closeandcleartokeninformation(); session = null; log.i(tag, "cleared session"); session.openactivesession(activity, true, sessioncallback); }
Comments
Post a Comment