A user successfully logs into the facebook app. However the app is not able to pull up the user's friend information. It can only return one friend's information who previously permitted the app to have her information.
I am using curl and access token to access my friends facebook data through an app. I am developing my app locally. It works those accounts of mine that I had before, but it does not work for new users. What could cause that?
Is that because I am developing on the localhost now? If yes, why does it work for couple of accounts that I have and not for other users which also have given permission to my app? I have also tried to access friends data using the access token I had and was not able to get any access to any data on the developer site.
$uri ="https://graph.facebook.com/".$friend_id."/books?access_token=".$params['access_token'];
$temp = json_decode(get_data($uri), true);