Created
June 8, 2018 12:52
-
-
Save chrismarksus/f290fee758e16053f7019e999945fabb to your computer and use it in GitHub Desktop.
Twitter feed in a javascript object
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
const testData = [{ | |
"created_at": "Thu Apr 06 15:24:15 +0000 2017", | |
"id_str": "850006245121695744", | |
"text": "1\/ Today we\u2019re sharing our vision for the future of the Twitter API platform!\nhttps:\/\/t.co\/XweGngmxlP", | |
"user": { | |
"id": 2244994945, | |
"name": "Twitter Dev", | |
"screen_name": "TwitterDev", | |
"location": "Internet", | |
"url": "https:\/\/dev.twitter.com\/", | |
"description": "Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter" | |
}, | |
"place": { | |
}, | |
"entities": { | |
"hashtags": [ | |
], | |
"urls": [ | |
{ | |
"url": "https:\/\/t.co\/XweGngmxlP", | |
"unwound": { | |
"url": "https:\/\/cards.twitter.com\/cards\/18ce53wgo4h\/3xo1c", | |
"title": "Building the Future of the Twitter API Platform" | |
} | |
} | |
], | |
"user_mentions": [ | |
] | |
} | |
},{ | |
"created_at": "Thu Apr 06 15:24:15 +0000 2017", | |
"id_str": "850006245121695744", | |
"text": "1\/ Today we\u2019re sharing our vision for the future of the Twitter API platform!\nhttps:\/\/t.co\/XweGngmxlP", | |
"user": { | |
"id": 2244994945, | |
"name": "Twitter Dev", | |
"screen_name": "TwitterDev", | |
"location": "Internet", | |
"url": "https:\/\/dev.twitter.com\/", | |
"description": "Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter" | |
}, | |
"place": { | |
}, | |
"entities": { | |
"hashtags": [ | |
], | |
"urls": [ | |
{ | |
"url": "https:\/\/t.co\/XweGngmxlP", | |
"unwound": { | |
"url": "https:\/\/cards.twitter.com\/cards\/18ce53wgo4h\/3xo1c", | |
"title": "Building the Future of the Twitter API Platform" | |
} | |
} | |
], | |
"user_mentions": [ | |
] | |
} | |
}]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment