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.

I am trying to store the hometown and location from Facebook API but I'm having problems extracting the data from the hometown and location arrays. (I already have token permission for that)

"hometown": {
    "id": "210336945633449",
    "name": "xxxx, yyyyy"

I'm using the following code

function getUserData() {
        $fb_cookie = $this->getCookie();
        if($fb_cookie) {
            $url = 'https://graph.facebook.com/me?access_token='.$this->getAccessToken();
            $data = json_decode($this->getDataFromUrl($url));
            $fb['id'] = $data->id;
            $fb['name'] = $data->name;
            $fb['first_name'] = $data->first_name;
            $fb['last_name'] = $data->last_name;
            $fb['link'] = $data->link;
            $fb['birthday'] = $data->birthday;
            $fb['gender'] = $data->gender;
            $fb['email'] = $data->email;
            $fb['location'] = $data->location; // <-----
$fb['hometown'] = $data->hometown; // <-----
            $fb['timezone'] = $data->timezone;
            $fb['locale'] = $data->locale;
            $fb['updated_time'] = $data->updated_time;
            $fb['picture'] = 'http://graph.facebook.com/'.$data->id.'/picture';


            //tokens
            $fb['token'] = $fb_cookie['access_token'];
            $fb['token_expires'] = $fb_cookie['expires'];
            return $fb;
        }
    }

Can anyone help me figure this?

Thanks

share|improve this question

1 Answer

As location and hometown are also object you to use like this get these values.

$fb['location'] = $data->location->name;
$fb['hometown'] = $data->hometown->name; 
share|improve this answer

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.