Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <h1>The Easy Way</h1> <ol> <li>If you haven't done so, join the Facebook group which you want to fetch the group ID</li> <li>Use the <a href="https://developers.facebook.com/tools/explorer" rel="nofollow">Facebook Graph API explorer</a></li> <li>Access your list of groups via <a href="http://graph.facebook.com/me/groups" rel="nofollow">http://graph.facebook.com/me/groups</a></li> <li>Search for the group and the ID will be listed in the object</li> </ol> <p>If you are doing it through your Facebook application, all you need is to grab an FB access token before you do the FB Graph API call (<a href="https://developers.facebook.com/docs/reference/api/" rel="nofollow">read up the documentation here, especially the Authorization section</a>)</p> <h1>The Hard Way</h1> <p>In case the easy way doesn't work (or if you feel iffy in joining the group), here's the sure-fire way to do so:</p> <ol> <li>Start up Firebug and enable the "Net" tab</li> <li>Bring up Facebook - check that the Net panl will show all the HTTP requests that's happening</li> <li>Click the "Clear" button so that you have the panel in the blank slate</li> <li>Click on the link of the Facebook group that you wanted to retrieve the Facebook ID</li> <li>Look out for a GET request to generic.php - that would be the very first request, but hunt it down if it's not. Click on the [+] box to expand the details</li> <li>Click on the "Parameters" tab and you'd see a key-value dictionary of the request. There'll be two fields in there called "key" and "sk", both of which would carry the same value like "group_1656399367890"</li> <li>The group's ID will be the numeric value after "group_" (in this case, it'll be 1656399367890)</li> </ol> <p>Hope that helps!</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload