2015-05-09

用 Python 抓 Facebook 上的資料


終於進展到我需要的部份了(灑花)



相關網站:Graph API Explorer(連結

程式碼(喜愛的運動員名字)
import  requests
import  json
token = '<自己到 graph api explorer 找,或是透過授權取得(吧)>'
res = requests.get('https://graph.facebook.com/v2.3/me?access_token=%s'%(token))
jsondata = json.loads(res.text)
for athletes in jsondata['favorite_athletes']:
        print athletes['name']

結果


1 則留言: