Last active
November 8, 2017 18:33
-
-
Save fmasanori/4684949 to your computer and use it in GitHub Desktop.
Python 3.x Facebook Search
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#@@@@@Sorry: this code has been deprecated in 2015, April 30 with new Facebook 2.0 API version | |
import urllib.request | |
import json | |
def search(texto): | |
#pegue o access_token | |
#em https://developers.facebook.com/tools/explorer | |
url = 'https://graph.facebook.com/search?q=' | |
tail = '&type=post&access_token=<copie aqui o access_token>' | |
resp = urllib.request.urlopen(url+texto+tail).read() | |
data = json.loads(resp.decode('utf-8')) | |
return data['data'] | |
for resp in search('CPRecife2'): | |
if 'message' in resp: | |
print (resp['from']['name'] + ': ' + resp['message'] + '\n') | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hello buddy, you have a new code that works with API 2.0?