Yes, I read all the Facebook documention and that is what led me to this forum. I figured there must be someone else finding this a problem, but it seems it might only be us.
The problem is it doesn’t seem to be reliable calling this line at all:
facebook.login( appId, callFacebook, {"public\_profile", "user\_friends"} )
But instead what seems to fix my users issues when logging in is using the plugin like this
facebook.login(self.fbAppID, facebookListener, {'public\_profile'} )
Then once Facebook returns the login worked, call
facebook.login(self.fbAppID, facebookListener, {'user\_friends'} )
It seems that sometimes, not sure what my user’s are doing, it wont even ask again for user_friends the first way and that is what is preventing them from logging in. The weird thing is, give it a day or 2, the users can successfully log in to Facebook with no change to their privacy settings on Facebook.
According to this document, http://docs.coronalabs.com/daily/guide/social/implementFacebook/index.html, the first way should work.
Sorry Dave, I’m not sure how to check the progress on a bug case.