I\'m following the facebook android sharing tutorial by facebook (https://developers.facebook.com/docs/android/share). The app runs fine and I can login with facebook an click o
We were having the same issue here.
Try using:
Session.getActiveSession().refreshPermissions();
This will refresh the list of permissions available on
List permissions = session.getPermissions();
It will only work with Facebook registered developers users or test users registered through the Facebook App Dashboard.
This worked for us.