Last active
December 19, 2015 04:59
-
-
Save fmasanori/5901531 to your computer and use it in GitHub Desktop.
Facebook Profile Python2
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
#deprecated with in 30 April, 2015, with new 2.0 Facebook API | |
import urllib | |
import json | |
from pprint import pprint | |
url = 'https://graph.facebook.com/fmasanori' | |
resp = urllib.urlopen(url).read() | |
data = json.loads(resp) | |
pprint(data) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment