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
640
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
660
Introduction to Ruby
eggegg
3
570
Defly
eggegg
0
330
Other Decks in Programming
See All in Programming
2ヶ月で生産性2倍、お買い物アプリ「カウシェ」4チーム同時改善の取り組み
ike002jp
1
120
ComposeでのPicture in Picture
takathemax
0
130
fieldalignmentから見るGoの構造体
kuro_kurorrr
0
130
20250426 GDGoC 合同新歓 - GDGoC のススメ
getty708
0
110
開発者フレンドリーで顧客も満足?Platformの秘密
algoartis
0
200
Storybookの情報をMCPサーバー化する
shota_tech
2
780
Orleans + Sekiban + SignalR でリアルタイムWeb作ってみた
tomohisa
0
240
一緒に働きたくなるプログラマの思想 #QiitaConference
mu_zaru
80
20k
AIコーディングエージェントを 「使いこなす」ための実践知と現在地 in ログラス / How to Use AI Coding Agent in Loglass
rkaga
4
1.3k
UMAPをざっくりと理解 / Overview of UMAP
kaityo256
PRO
3
1.5k
生成AIで知るお願いの仕方の難しさ
ohmori_yusuke
1
110
AWS Summit Hong Kong 2025: Reinventing Programming - How AI Transforms Our Enterprise Coding Approach
dwchiang
0
130
Featured
See All Featured
Gamification - CAS2011
davidbonilla
81
5.3k
The Invisible Side of Design
smashingmag
299
50k
How STYLIGHT went responsive
nonsquared
100
5.5k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
2.9k
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.7k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
60k
Building a Modern Day E-commerce SEO Strategy
aleyda
40
7.2k
Designing for Performance
lara
608
69k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
105
19k
Adopting Sorbet at Scale
ufuk
76
9.3k
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