Graph Hacking

You can use this tool inside Facebook’s Graph API to find multiple pages for any business or brand! First, go to the Graph API inside the Facebook Developers page. Scroll down until you get to the ‘Searching’ section. You will see that Facebook supports search for many different objects. We’ll use pages to search for all Fuddruckers’ Facebook pages.
After clicking on the ‘Pages’ link, we are taken here. The search is defaulted to search for platform, and we can change where it says platform to Fuddruckers in the url so now it starts with:
https://graph.facebook.com/searchq=Fuddruckers&type=page&access_token=
To pull more than 25 search results, add:
&limit=200
The search will now pull 200 results with the name of each page, its category, and id number
We are interested in the id number because we add it to the end of www.facebook.com/ to bring us to their page
Select all, and copy to a new workbook in Excel, and run a simple ‘Sort’ on the data so we can isolate the user id for each Facebook page.
After the sort, you will end up with a list where all of the id numbers are together. Isolate these and paste them to a new workbook.
We will now use the find and replace feature to:
find: “id”:
replace with: www.facebook.com/
click replace all
Use the find and replace tool to clean up the rest of the apostrophes and spaces, replacing them with no characters. Your list of the top 200 Fuddruckers pages is now be ready to go!

Leave a Comment

Your email address will not be published. Required fields are marked *