I think the fields retrieved with:
graph.facebook.com/search?q=QUERY&type=TYPE&fields=FIELDS&access_token=ACCESS_TOKEN
depend on the object you want to execute. These are the ones you can see if you want:
https://graph.facebook.com/OBJECT_ID
If i'm looking
graph.facebook.com/search?q=troy&type=page&access_token=ACCESS_TOKEN
I will get, for example, an object with the identifier "114198018660591", so I can only search for these fields:
"id": "114198018660591", "name": "Troy", "picture": "http://profile.ak.fbcdn.net/hprofile-ak-snc4/195743_114198018660591_3661508_s.jpg", "link": "http : //www.facebook.com/pages/Troy/114198018660591 "," loves ": 2418231," category ":" Movie "," can_post ": true," talking_about_count ": 17956
obtained using (https://graph.facebook.com/114198018660591).
So I can do research like:
graph.facebook.com/search?q=troy&type=page&fields=id,name,category&access_token=ACCESS_TOKEN
but DO NOT like:
graph.facebook.com/search?q=troy&type=page&fields=id,name,category,website&access_token=ACCESS_TOKEN
also if the βwebsiteβ field is recorded in some object data.