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.

Using the Graph API I can get a page for a certain location, for example a City like this:

https://graph.facebook.com/112604772085346

But when visiting the actual page,

https://www.facebook.com/pages/Ramat-Gan/112604772085346

There is a hierarchy that says this city is part of the "Tel Aviv" district which is part of "Israel".

How can I get this information using Graph API? Any other known way is also good, with the exception of "store a list of all the cities in the world in your application".

share|improve this question

2 Answers

up vote 0 down vote accepted

If all else fails...

<?php

class DOM
{
    public static function innerHTML($element) 
    {
        $tmp = new DOMDocument(); 
        $tmp->appendChild($tmp->importNode($element, true)); 
        return trim($tmp->saveHTML()); 
    }
}

function curl($url)
{
        $curl = curl_init();
        curl_setopt($curl, CURLOPT_URL, $url);
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
        curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1');
        $data = curl_exec($curl);
        curl_close($curl);
        return $data; 
}

$html = curl('http://www.facebook.com/pages/Ramat-Gan/112604772085346?_fb_noscript=1');

$dom = new DOMDocument();
@$dom->loadHTML($html);

$xpath = new DOMXPath($dom);
$x = $xpath->query('//div[@id="places_directory_breadcrumb_header"]')->item(0);
echo DOM::innerHTML($x);

?>

Result...

<div id="places_directory_breadcrumb_header" data-referrer="places_directory_breadcrumb_header">
<div class="fsm fwn fcg">
<a href="http://www.facebook.com/directory/places/">Places</a><i class="mhs img sp_dob1w7 sx_c6f550"></i>
<a href="http://www.facebook.com/pages/Israel/108099562543414">Israel</a><i class="mhs img sp_dob1w7 sx_c6f550"></i>
<a href="http://www.facebook.com/pages/Tel-Aviv-Israel/106371992735156">Tel Aviv</a><i class="mhs img sp_dob1w7 sx_c6f550"></i>
<a href="http://www.facebook.com/pages/Ramat-Gan/112604772085346">Ramat Gan</a>
</div>
</div>

You can then extract links and city/state names...

share|improve this answer

Ended up using html scraping like webarto suggested. (awarding him correct answer)

My version is in Python:

import urllib2
from BeautifulSoup import BeautifulSoup

def scrape_page(page_name):
    page = urllib2.urlopen('http://www.facebook.com/pages/%s' % (page_name,))
    soup = BeautifulSoup(page)
    return soup.find(id='places_directory_breadcrumb_header').findAll('a')

result looks like this:

>>> scrape_page("Ramat-Gan/112604772085346")

[<a href="http://www.facebook.com/directory/places/">Places</a>,
 <a href="http://www.facebook.com/pages/Israel/108099562543414">Israel</a>,
 <a href="http://www.facebook.com/pages/Tel-Aviv-Israel/106371992735156">Tel Aviv</a>,
 <a href="http://www.facebook.com/pages/Ramat-Gan/112604772085346">Ramat Gan</a>]
share|improve this answer
Cool, I always wanted to learn Python... – webarto Dec 6 '11 at 21:48

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.