Created
August 2, 2012 20:20
-
-
Save howardr/3240290 to your computer and use it in GitHub Desktop.
Example context data
This file contains 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
{ | |
"mobile": false, | |
// simple status info | |
// in the case of a retweet, this will | |
// be based on the original status that was retweeted | |
// and not the status that contained the retweet | |
"status": { | |
"id_str": "231110606676176898", | |
// simple author user info | |
"user": { | |
"id_str": "322540329", | |
"name": "manth", | |
"screen_name": "samemery1", | |
"verified": false | |
} | |
}, | |
"viewer": { | |
// a viewer provided or not | |
"anonymous": false, | |
// is the viewer following the author of the tweet | |
"following": true, | |
// simple viewer user info | |
"user": { | |
"id_str": "14391923", | |
"name": "Howard R.", | |
"screen_name": "howardr", | |
"verified": false | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment