My code is like this:
$FBpage = file_get_contents('https://graph.facebook.com/me/feed?access_token='.$params['access_token']);
$FBdata = json_decode($FBpage);
The problem is that the "feed" returned contains only a small part of the information (a few friend adds and no posts with links). What is the url to get the home page news feed of current user? It can be pretty big so if you can also tell me how to get a certain number of feed entries or how to "page" through it.
I don't have problems with login or other, I am able to get the data just that I think the url is not the one I want. This is a basic question but however I just don't find info on google. Thanks in advance.