How do I check if a facebook page, group, or person exists using php?
Thanks in advance,
Robert
|
|
Try with Facebook API (https://developers.facebook.com/docs/reference/php/)
If not exists, facebook return See https://developers.facebook.com/docs/reference/api/ for a list of sample URLs |
|||||||||||||
|
|
Currently, if you access a not existing facebook page, you get this message:
So basically you can do a:
But be vary, the message might change and then you will get no result on that script. So better put it in a constant somewhere that you can easily change later:
|
|||||
|
|
|
Facebook not supports The code is useful for other websites to check anything existed or not. But Facebook is quite differ from other websites.
|
|||||
|
|
You would need the facebook_id or url of the user/group. Then using curl, you could look for the status code returned. 404 means, it does not exist. |
|||
|
|
Ok thanks to Gabriel Santos and Jeff, this is what I ended up with:
Thanks again for your help guys :) |
|||||
|