IM using the php sdk for graph api on facebook. I am trying to pull the last status update of users. The thing is i cannot get it to work.. Anyone have a quick code example thats working?
EDIT: I have got it working but cannot get the array to list the last 3 likes here is my code:
$username = $user_profile['username'];
$status = $facebook->api('/'.$username.'/feed?likes=5');
$likes = $facebook->api('/me/likes?limit=5');
echo 'Likes: <br>';
echo $likes['data'][0]['name'] . '<br>';
likesvariable - what does print_r() tell you about the value? – Igy Jun 14 '12 at 9:32var_dump($likes)and show what it spits out – Akshat Jun 15 '12 at 1:29