You cannot currently. It is placed on the list.
So you have to wrap the request in Python:
import requests query = 'My String' r = requests.get('https://graph.facebook.com/search?q=%s&type=page' % query) result = r.json result['data'] = [ item for item in result['data'] if query.lower() in item['name'].lower() ] print [ item['name'] for item in result['data'] ]
Now you have only exact matches.
source share