Everything in Facebook has an ID
JSON as Data Format
GET https://graph.facebook.com/19292868552
Slide 7
Slide 7 text
ACCESS TOKEN
SCOPE
The KEY for accessing the API.
What you CAN do with access token.
user_photos, user_likes...
Slide 8
Slide 8 text
GRAPH API EXPLORER
https://developers.facebook.com/tools/explorer
Slide 9
Slide 9 text
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=...
...
Slide 10
Slide 10 text
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=...