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?
|
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? |
|||||||||||
|
|
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:
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:
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. |
|||||
|
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 -
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.
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... |
|||||||||||
|