I am trying to return a friends list with an uid of an authenticated user. however, I get only a partial return value, some friends are simply missing:
graph = Koala::Facebook::API.new(fb_token) friends = graph.get_connections("me", "friends")
when i type
friends.paging["next"]
in the browser it also returns an empty json array
"data": [ ]
How am I doing this wrong and what is the right practice?
source share