Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Facebook Graph API
Search
Andrew Liu
May 02, 2012
Programming
7
630
Facebook Graph API
2012 CCSP
Andrew Liu
May 02, 2012
Tweet
Share
More Decks by Andrew Liu
See All by Andrew Liu
HTTP
eggegg
17
1.4k
Version Control System - Git
eggegg
4
640
Introduction to Ruby
eggegg
3
560
Defly
eggegg
0
310
Other Decks in Programming
See All in Programming
htmxって知っていますか?次世代のHTML
hiro_ghap1
0
350
PHPとAPI Platformで作る本格的なWeb APIアプリケーション(入門編) / phpcon 2024 Intro to API Platform
ttskch
0
290
Scalaから始めるOpenFeature入門 / Scalaわいわい勉強会 #4
arthur1
1
340
LLM Supervised Fine-tuningの理論と実践
datanalyticslabo
7
1.4k
Cloudflare MCP ServerでClaude Desktop からWeb APIを構築
kutakutat
1
560
アクターシステムに頼らずEvent Sourcingする方法について
j5ik2o
4
320
「Chatwork」Android版アプリを 支える単体テストの現在
okuzawats
0
180
PHPUnitしか使ってこなかった 一般PHPerがPestに乗り換えた実録
mashirou1234
0
300
責務を分離するための例外設計 - PHPカンファレンス 2024
kajitack
8
1.7k
創造的活動から切り拓く新たなキャリア 好きから始めてみる夜勤オペレーターからSREへの転身
yjszk
1
130
CQRS+ES の力を使って効果を感じる / Feel the effects of using the power of CQRS+ES
seike460
PRO
0
150
Haze - Real time background blurring
chrisbanes
1
520
Featured
See All Featured
Statistics for Hackers
jakevdp
796
220k
Embracing the Ebb and Flow
colly
84
4.5k
The Pragmatic Product Professional
lauravandoore
32
6.3k
How STYLIGHT went responsive
nonsquared
96
5.2k
The Power of CSS Pseudo Elements
geoffreycrofte
73
5.4k
How to train your dragon (web standard)
notwaldorf
88
5.7k
Building a Scalable Design System with Sketch
lauravandoore
460
33k
Building an army of robots
kneath
302
44k
Documentation Writing (for coders)
carmenintech
66
4.5k
VelocityConf: Rendering Performance Case Studies
addyosmani
326
24k
Building Applications with DynamoDB
mza
91
6.1k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
Transcript
FACEBOOK API Andrew Liu
“move fast and break things” Mark Zuckerberg
None
None
GRAPH API
Everything in Facebook has an ID JSON as Data Format
GET https://graph.facebook.com/19292868552
ACCESS TOKEN SCOPE The KEY for accessing the API. What
you CAN do with access token. user_photos, user_likes...
GRAPH API EXPLORER https://developers.facebook.com/tools/explorer
What about “me”? GET https://graph.facebook.com/me?access_token=... or GET https://graph.facebook.com/me/friends?access_token=... GET https://graph.facebook.com/me/likes?access_token=...
...
Not only GET, but POST and DELETE POST https://graph.facebook.com/19292868552/comments? message=Hello+World&access_token=...
or DELETE https://graph.facebook.com/19292868552/likes? access_token=...
AUTHENTICATION
Server-side version
Javascript SDK version
SOCIAL PLUGIN
None
OPEN GRAPH
None
None
None