How do I find my Facebook group ID?
Asked Answered
H

8

29

My Facebook Group Url is: http://www.facebook.com/groups/284064464943140/ I've read that the group ID is in the Url labelled "id=" or "groupid=" but assume this has changed since there is no such tag in my Url. I would like to use the group id to insert a group feed into our group website. Thank you

Hoopes answered 21/1, 2012 at 22:39 Comment(0)
C
38

For finding any facebook group_id or page_id or user_id go to inspect element of page and find these in meta tags.

Group Id

 fb://group/Here_is_your_group_id

Profile user_id

 fb://profile/here_is_your_user_id 

Page Id

fb://page/here_is_your_page_id
Cynthiacynthie answered 13/10, 2015 at 5:2 Comment(4)
This should be the answer. No need to rely on other tools.Raft
yeah that's true. But how can we get the email address of that fb group? @Prashant Srivastav. Such asFeudal
There is no id for my group in the url.Oberg
groupID There must be no space between group and ID when searching in inspect element!Sampan
A
20

try at http://lookup-id.com/ , get facebook id and group id

Azalea answered 9/11, 2013 at 7:38 Comment(2)
Just checked out, this method is also not working anymore for groups you don't manage.Izzo
Not true. It works for groups you don't manage as well. It might not sure work hidden ones though; not sure.Swordsman
S
15

Try http://wallflux.com/facebook_id/, it will guide you through it,

Soulless answered 7/2, 2012 at 23:16 Comment(1)
wallflux gave me a different ID for my page than lookup-id did, and the ID wallflux gave me did not work.Energumen
I
10

If you need the id for more group for which you are admin, a faster method will be to use facebook's Graph Explorer tool. You need to get access token for 'user_groups' 'user_managed_groups' and make a request by adding groups field:

me?fields=groups

click submit. This will print all of the groups you are member of and corresponding IDs.

Update: Sorry folks, it seems that Facebook is pulling out the API for groups you don't manage. This whole topic might be obsolete.

Izzo answered 25/4, 2014 at 15:29 Comment(4)
The user_groups permission has been removed, so this doesn't work anymoreTasiatasiana
@Tasiatasiana I just checked it. It's still works, but you're partially correct: user_groups is now user_managed_groupsIzzo
when I tried it, it only printed out the one group that I'm an admin of. And clicking on the next field gave me a blank responseTasiatasiana
That's correct. Since Facebook pull out the API, most of those methods won't work anymore. I though he meant 'my' Facebook group as he is the admin of. Sorry folksIzzo
C
1

You can look for post_form_id in the source code on Facebook but that is not always accurate.

For groups that do not have the ID in the Facebook URL you can get the page or the group ID using this free simple online tool: http://whatismyfacebookid.com

Christmann answered 29/11, 2013 at 9:46 Comment(0)
C
1

You can try https://commentpicker.com/find-facebook-id.php to find a Group ID by entering the FB Group URL. Most of the other online tools don't work anymore.

You can also find it in the source code like mentioned in the other comments. Go to the group page, right click and choose "View Source code" and search for fb://group/. The Group ID will be displayed after the slash or after ?id=

Claudication answered 26/4, 2020 at 15:38 Comment(0)
C
0

Based upon graph api, you can get group ids as follows:

 $facebook->api( '/'.$userId.'/groups', 'GET', array( 'access_token=' => $userToken ));

by iterating through its results.

Calamite answered 18/4, 2015 at 7:35 Comment(1)
This doesn't work with version 2.5 because /groups only shows groups where you are admin at.Raft
M
-1

1) Go to Facebook (www.facebook.com)

2) Click on the little triangle on the top right

3) Select "Manage Groups"

4) Ensure you are on the "Groups" not "Discover" tab (check top left for that)

5) Click on your group

6) Look at your URL from your web browser, it will display something like http://www.facebook.com/groups/12345/about

12345 would be your group in this case.

I hope this helps

Regards

Heider

Mint answered 30/3, 2018 at 0:54 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.