Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
 require 'facebook.php';

    $app_id ="11111111111111111";
    $app_secret = "11111111111111111111111111";

    $facebook = new facebook(array(
        'appId' => $app_id,
        'secret' => $app_secret,
        'cookie' => true
    ));

    $signed_request = $facebook->getSignedRequest();
    $page_id = $signed_request["page"]["id"];
    $page_admin = $signed_request["page"]["admin"];
    $like_status = $signed_request["page"]["liked"];
    $country = $signed_request["user"]["country"];
    $locale = $signed_request["user"]["locale"];
    $name = $signed_request["user"]["name"];
share|improve this question
You'll never get user name within signed_request – Juicy Scripter Dec 21 '11 at 17:59

1 Answer

up vote 2 down vote accepted

According to the facebook docs, the user property is

A JSON object containing the locale string, country string and the age object (containing the min and max number range of the age) for the current user.

Note the lack of any mention of a name in there.

share|improve this answer
thank you for your answer, how can i get the name for current facebook user? – m3tsys Dec 21 '11 at 19:50
Dunno. Doesn't look like you'll get it directly from a signed request, though. The user_id might help if passed to a different API, but i don't know enough about the facebook API to tell you how to get a user's info. – cHao Dec 21 '11 at 19:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.