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.5k
Version Control System - Git
eggegg
4
650
Introduction to Ruby
eggegg
3
560
Defly
eggegg
0
320
Other Decks in Programming
See All in Programming
Grafana Cloudとソラカメ
devoc
0
170
DROBEの生成AI活用事例 with AWS
ippey
0
130
プログラミング言語学習のススメ / why-do-i-learn-programming-language
yashi8484
0
130
Software Architecture
hschwentner
6
2.1k
さいきょうのレイヤードアーキテクチャについて考えてみた
yahiru
3
750
Djangoアプリケーション 運用のリアル 〜問題発生から可視化、最適化への道〜 #pyconshizu
kashewnuts
1
250
社内フレームワークとその依存性解決 / in-house framework and its dependency management
vvakame
1
560
Ruby on cygwin 2025-02
fd0
0
140
『GO』アプリ データ基盤のログ収集システムコスト削減
mot_techtalk
0
120
Domain-Driven Transformation
hschwentner
2
1.9k
JavaScriptツール群「UnJS」を5分で一気に駆け巡る!
k1tikurisu
9
1.8k
Flutter × Firebase Genkit で加速する生成 AI アプリ開発
coborinai
0
160
Featured
See All Featured
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
27
1.9k
The Language of Interfaces
destraynor
156
24k
Site-Speed That Sticks
csswizardry
4
380
Building Adaptive Systems
keathley
40
2.4k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
GitHub's CSS Performance
jonrohan
1030
460k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
160
15k
Embracing the Ebb and Flow
colly
84
4.6k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.3k
Docker and Python
trallard
44
3.3k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
29
1k
Bootstrapping a Software Product
garrettdimon
PRO
306
110k
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