I'm new to Python and I'm trying to retrive the objects that are returned after feeding in some keyword in Facebook Search. As per the documentation it says that using the below link with a 'query' and 'post' parameter should do the trick.
https://graph.facebook.com/search?q=QUERY&type=OBJECT_TYPE
But the problem is when I try to open a particular search item using the below, it doesn't return any json objects.
fb_search = json.load(urllib.urlopen("https://graph.facebook.com/search?q=Watermelon&type=post"))
and then print fb_search, it just returns me an empty dictionary of {u'data': []}
What am I doing wrong? Sorry if this is a repeated question. If someone could help me with the actual code, I'll be very grateful!