Daniel Zohar
Daniel Zohar

Reputation: 2092

Facebook Graph API - group URL to ID

While some group URLs come in the format of www.facebook.com/groups/%ID%/ other come in the format of www.facebook.com/groups/%SOME_STRING%/. For example http://www.facebook.com/groups/2261122614/ vs. http://www.facebook.com/groups/fbdevelopers/.

In the former case it's very easy to programmatically extract the Graph API ID from the URL. How can that be done for URLs of the latter case?

Upvotes: 5

Views: 2517

Answers (3)

Stéphane
Stéphane

Reputation: 1799

I'm using this website. It works for groups and profiles http://findmyfbid.com/

Upvotes: 0

tekNorah
tekNorah

Reputation: 409

Just figured this out! Do this:

http://graph.facebook.com/search?q=[ALIAS]&type=group

Upvotes: 3

wallflux
wallflux

Reputation: 430

Try http://www.wallflux.com/facebook_id/

Upvotes: 0

Related Questions