I tried to build facebook game but I stuck in saving score.
I have tried exactly as written in http://developers.facebook.com/docs/guides/games/getting-started/#step4 but It just simply wouldn't save the score.
I thought the problem is in this listing :
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $app_secret,
));
$user = $facebook->getUser();
print('user : '.$user.' ');
there is always 0 although my fb account had logged in. With this problem I couldn't save nor update the high score. I need help to find the way to retrieve the $user.
I really appreciate every favor to me. Thank you...