Skip to content

Instantly share code, notes, and snippets.

@camshaft
Created November 13, 2012 19:16
Show Gist options
  • Save camshaft/4067771 to your computer and use it in GitHub Desktop.
Save camshaft/4067771 to your computer and use it in GitHub Desktop.
Facebook Graph in Collection+JSON
{
"collection" :
{
"version" : "1.0",
"href" : "https://graph.facebook.com/123456789",
"items" :
[
{
"href" : "https://graph.facebook.com/123456789",
"data" :
[
{"name" : "name", "value" : "Jerome Murphy"},
{"name" : "first-name", "value" : "Jerome"},
{"name" : "last-name", "value" : "Murphy"},
{"name" : "gender", "value" : "male", "options": [
{"name" : "male", "prompt" : "Male"},
{"name" : "female", "prompt" : "Female"}
]},
{"name" : "hometown", "value" : "Middle of Nowhere"},
{"name" : "location", "value" : "Other side of the world"},
{"name" : "updated-time", "value" : "2012-11-07T04:56:31+0000"}
],
"links" :
[
{"rel" : "profile-page", "href" : "https://www.facebook.com/jerome.murphy"},
{"rel" : "hometown", "href" : "https://graph.facebook.com/..."},
{"rel" : "location", "href" : "https://graph.facebook.com/..."},
{"rel" : "sports", "href" : "https://graph.facebook.com/..."},
{"rel" : "inspirational-people", "href" : "https://graph.facebook.com/..."},
{"rel" : "languages", "href" : "https://graph.facebook.com/..."}
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment