I solved this by using this instead of Facebook’s plugin.
local accessToken = settings.facebook.getCurrentAccessToken() local json = require( "json" ) local function handleResponse( event ) if not event.isError then local response = json.decode( event.response ) -- Handle friends here under response.data else print( "Error" ) end return end network.request( "https://graph.facebook.com/me/invitable\_friends?limit=5000&access\_token="..accessToken.token, "GET", handleResponse )
That’s a good work around. I was going to try and see if I could reproduce your problem, but I’m having other Facebook issues on Android with my test app that we are trying to solve. I asked an engineer who isn’t having the problem I’m having to take a look at the problem and see what’s going on.