Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how to find a facebook url is community url or profile url using facebook API

For example http://www.facebook.com/adelphi.panthers

http://www.facebook.com/BryantAthletics

Which is profile url and which is community url, how to find?

share|improve this question
By community are you referring to a Facebook group or page..? – Kent Pawar Oct 16 '12 at 7:25
No i want to identify BryantAthletics or adelphi.panthers community or group profile – Elby Oct 16 '12 at 7:32
Okay.. But I guess FB now calls a community as a page. Take a look at - Graph API > Facebook Objects – Kent Pawar Oct 16 '12 at 7:36
Ok, then how can i identify it is page or profile – Elby Oct 16 '12 at 7:38
Easy.. I'm posting my way of doing it... – Kent Pawar Oct 16 '12 at 7:40
show 4 more comments

2 Answers

up vote 2 down vote accepted

Well as @Lix has suggested you could do something like this:

Request: https://graph.facebook.com/BryantAthletics?fields=gender

HTTP Response: 400 Bad Request

JSON Response:

{
   "error": {
      "message": "(#100) Unknown fields: gender.",
      "type": "OAuthException",
      "code": 100
   }
}

This tells us its NOT a User object. But then it could be a group or a page.. So you need to make another request using an attribute that is unique either to a group or page. Depending on how you make the request, you could decide to handle the result accordingly.

Consider,

Request: https://graph.facebook.com/adelphi.panthers?fields=gender

HTTP Response: 200 OK

JSON Response:

{
   "gender": "female",
   "id": "1360823630"
}

Now this tells us that the gender attribute exist within this Facebook object and so it is definitely a user.

I'm assuming you are using JQuery to capture and parse the response. Then you would check for the error attribute in the JSON variable to determine the object type.

share|improve this answer
Thank You Kent and Lix – Elby Oct 16 '12 at 10:42
@Elby i take it that this answered your question. Could you mark the question as answered/Closed. thanks! Unless you have found a better way of doing it and would like to share that here... – Kent Pawar Oct 16 '12 at 10:58

The links you provided were for a Facebook user and for a Facebook page. I'm going to assume that by "community url" you mean Facebook page...

Ok, so I think it will be pretty simple to detect what is a Facebook Page and what is a User according to the username (or ID).

All you would have to do (in these cases), is query the Graph API with the username -

https://graph.facebook.com/adelphi.panthers

{
  "id": "1360823630", 
  "name": "Adelphi Panthers", 
  "first_name": "Adelphi", 
  "last_name": "Panthers", 
  "link": "https://www.facebook.com/adelphi.panthers", 
  "username": "adelphi.panthers", 
  "gender": "female", 
  "locale": "en_US", 
  "updated_time": "2012-10-09T12:51:38+0000"
}

As you can see, this call to the API returned a gender parameter. Pages can not have genders so we can assume this is a Facebook User.

https://graph.facebook.com/BryantAthletics

{
  "name": "Bryant Athletics", 
  "is_published": true, 
  "website": "bryantbulldogs.com", 
  "username": "BryantAthletics", 
  ...
  "category": "School sports team", 
  ...
}

You can see here that much much more information is being returned to us. I think the Category parameter is a good indication that this specific username is related to a page. Users can not choose a category for themselves...

share|improve this answer
Ok thanks for your replay, but any other unique method for finding this? i think user type like that? – Elby Oct 16 '12 at 7:29
What user types are there? What would you look for? – Lix Oct 16 '12 at 7:33
Lix, identify BryantAthletics or adelphi.panthers community or group profile – Elby Oct 16 '12 at 7:34
@elb - you are inventing terms that Facebook doesn't use. Please explain what you are looking for. There is no such thing as a community profile... – Lix Oct 16 '12 at 7:44
@Lix Yup Elby was referring to a Page. Community Pages – Kent Pawar Oct 16 '12 at 7:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.