How do I find out my Facebook page ID?

I’ve tried using findmyfacebookid.com but it comes back with:

Unable to lookup Facebook numeric ID. You can try again, or see this tutorial for an alternate method.

I also tried the alternate method with no luck. Any ideas how to get the Facebook identifier for a page?

Read More

The page is www.facebook.com/mickandsheilagillmortgageexperts

Related posts

Leave a Reply

1 comment

  1. Using the link http://graph.facebook.com/username will effectively return a JSON array of username‘s details.

    Use the field id to get a user’s page identifier. Here’s an example using Zuckerberg’s profile.

    {
       "id": "4",
       "name": "Mark Zuckerberg",
       "first_name": "Mark",
       "last_name": "Zuckerberg",
       "link": "https://www.facebook.com/zuck",
       "username": "zuck",
       "gender": "male",
       "locale": "en_US"
    }