Menu
  • HOME
  • TAGS

SimpleFacebook isLogin returns true even when I logout from Facebook app on device

android,facebook,android-simple-facebook

This is a Facebook issue You need to clear the Session token cache that is in local memory. So place this before login Session ses = mSimpleFacebook.getSession(); ses.closeAndClearTokenInformation(); I wonder why the -1 in the question...

Exception thrown when calling getFriends

java,android,android-simple-facebook

The explanation The Exception is thrown in the onPreExecute part of an AsyncTask which is part of the Facebook library (com.facebook.RequestAsyncTask). onPreExecute is executed in the same thread as the caller of the AsyncTask. If the caller is the ui thread, no issue, it will work. It the caller is...

Android Facebook SDK - username is getting null

android,android-facebook,android-simple-facebook

You can't get username in API v2.0

Published Facebook Feed can Only be Seen by Self

android,facebook,sdk,libgdx,android-simple-facebook

You need to set your app “live”. Go to Status & Review tab in app dashboard, on top you find “Do you want to make this app and all its live features available to the general public?” … that one you need to set to Yes. Before setting this to...