Created
November 13, 2012 19:16
-
-
Save camshaft/4067771 to your computer and use it in GitHub Desktop.
Facebook Graph in Collection+JSON
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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