tweetsearch 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.ruby-version +1 -0
- data/bin/tweetsearch +8 -2
- data/lib/tweetsearch/tweet.rb +6 -3
- data/lib/tweetsearch/version.rb +1 -1
- data/spec/support/cassettes/tweet_spec_should_return_Tweets_that_contain_specific_hashtags.yml +134 -210
- data/spec/support/cassettes/twitter_client_spec_should_return_Tweets_that_contain_specific_hashtags.yml +134 -210
- data/spec/tweetsearch/tweet_spec.rb +1 -1
- data/tweetsearch.gemspec +0 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac51c38ac2dd235f57769d6175e84bf0731d055d
|
4
|
+
data.tar.gz: 45dad53cf74fbca941b852b800748a3e6b030ddd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30051bdcb6e289f35b295115a28c1945ffe715ab1f1179b8347ab2446ff9cbae1d4d7ec40a42bd554b7894f0f42a25877a9a3ac9ea0a6487d2a08b4456164b28
|
7
|
+
data.tar.gz: 6c74dd3b122ebed7151a5188eb58c8e744b91927577a7fa9180943a2cb267d060c12ef32aff67223fa983d17952850e07bd1e6146c77046e534f9dbc9c9b8926
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.3.1
|
data/bin/tweetsearch
CHANGED
@@ -13,6 +13,12 @@ end
|
|
13
13
|
print 'Hashtags (separated by space): '
|
14
14
|
tags = gets.chomp.split.map { |tag| tag.start_with?('#') ? tag : "##{tag}" }
|
15
15
|
|
16
|
-
|
16
|
+
print 'With media only? (Y/N): '
|
17
|
+
media_only = gets.chomp.casecmp('Y')
|
17
18
|
|
18
|
-
tweets
|
19
|
+
tweets = TweetSearch::Tweet.find_by(tags: tags, media_only: media_only)
|
20
|
+
|
21
|
+
tweets.each do |item|
|
22
|
+
puts item.text
|
23
|
+
item.media_urls.each { |url| puts "\t#{url}" } if media_only
|
24
|
+
end
|
data/lib/tweetsearch/tweet.rb
CHANGED
@@ -1,16 +1,19 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
module TweetSearch
|
3
3
|
class Tweet
|
4
|
-
attr_reader :id, :created_at, :text
|
4
|
+
attr_reader :id, :created_at, :text, :media_urls
|
5
5
|
|
6
6
|
def initialize(data)
|
7
7
|
@id = data['id']
|
8
8
|
@created_at = DateTime.parse(data['created_at'])
|
9
9
|
@text = data['text']
|
10
|
+
@media_urls = data.dig('entities', 'media')&.map { |media| media['media_url_https'] }
|
10
11
|
end
|
11
12
|
|
12
|
-
def self.
|
13
|
-
TwitterClient.search_tweets(tags)
|
13
|
+
def self.find_by(tags:, **options)
|
14
|
+
tweets = TwitterClient.search_tweets(tags)
|
15
|
+
tweets.select! { |data| data.dig('entities', 'media') } if options[:media_only]
|
16
|
+
tweets.map { |data| new(data) }
|
14
17
|
end
|
15
18
|
end
|
16
19
|
end
|
data/lib/tweetsearch/version.rb
CHANGED
data/spec/support/cassettes/tweet_spec_should_return_Tweets_that_contain_specific_hashtags.yml
CHANGED
@@ -19,22 +19,22 @@ http_interactions:
|
|
19
19
|
Content-Disposition:
|
20
20
|
- attachment; filename=json.json
|
21
21
|
Content-Length:
|
22
|
-
- '
|
22
|
+
- '61491'
|
23
23
|
Content-Type:
|
24
24
|
- application/json;charset=utf-8
|
25
25
|
Date:
|
26
|
-
-
|
26
|
+
- Thu, 15 Dec 2016 06:37:27 GMT
|
27
27
|
Expires:
|
28
28
|
- Tue, 31 Mar 1981 05:00:00 GMT
|
29
29
|
Last-Modified:
|
30
|
-
-
|
30
|
+
- Thu, 15 Dec 2016 06:37:27 GMT
|
31
31
|
Pragma:
|
32
32
|
- no-cache
|
33
33
|
Server:
|
34
34
|
- tsa_a
|
35
35
|
Set-Cookie:
|
36
|
-
- guest_id=v1%
|
37
|
-
|
36
|
+
- guest_id=v1%3A148178384727951451; Domain=.twitter.com; Path=/; Expires=Sat,
|
37
|
+
15-Dec-2018 06:37:27 UTC
|
38
38
|
Status:
|
39
39
|
- 200 OK
|
40
40
|
Strict-Transport-Security:
|
@@ -42,7 +42,7 @@ http_interactions:
|
|
42
42
|
X-Access-Level:
|
43
43
|
- read
|
44
44
|
X-Connection-Hash:
|
45
|
-
-
|
45
|
+
- caca8580638916fa88edc6099f8a82ac
|
46
46
|
X-Content-Type-Options:
|
47
47
|
- nosniff
|
48
48
|
X-Frame-Options:
|
@@ -50,228 +50,152 @@ http_interactions:
|
|
50
50
|
X-Rate-Limit-Limit:
|
51
51
|
- '450'
|
52
52
|
X-Rate-Limit-Remaining:
|
53
|
-
- '
|
53
|
+
- '448'
|
54
54
|
X-Rate-Limit-Reset:
|
55
|
-
- '
|
55
|
+
- '1481784746'
|
56
56
|
X-Response-Time:
|
57
|
-
- '
|
57
|
+
- '67'
|
58
58
|
X-Transaction:
|
59
|
-
-
|
59
|
+
- 007646080083f5af
|
60
60
|
X-Twitter-Response-Tags:
|
61
61
|
- BouncerCompliant
|
62
62
|
X-Xss-Protection:
|
63
63
|
- 1; mode=block
|
64
64
|
body:
|
65
65
|
encoding: UTF-8
|
66
|
-
string: '{"statuses":[{"created_at":"
|
67
|
-
|
68
|
-
#
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
66
|
+
string: '{"statuses":[{"created_at":"Thu Dec 15 06:28:46 +0000 2016","id":809284043539742720,"id_str":"809284043539742720","text":"EAT\nDRINK\nand
|
67
|
+
be\nMERRY\n\n#eat #drink #merry #food #foodpic #holidays #quote #quotes #bread
|
68
|
+
#beer #foodporn #yum\u2026 https:\/\/t.co\/IRCThBCD8F","truncated":true,"entities":{"hashtags":[{"text":"eat","indices":[24,28]},{"text":"drink","indices":[29,35]},{"text":"merry","indices":[36,42]},{"text":"food","indices":[43,48]},{"text":"foodpic","indices":[49,57]},{"text":"holidays","indices":[58,67]},{"text":"quote","indices":[68,74]},{"text":"quotes","indices":[75,82]},{"text":"bread","indices":[83,89]},{"text":"beer","indices":[90,95]},{"text":"foodporn","indices":[96,105]},{"text":"yum","indices":[106,110]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IRCThBCD8F","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/809284043539742720","display_url":"twitter.com\/i\/web\/status\/8\u2026","indices":[112,135]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
69
|
+
href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter
|
70
|
+
for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2541222271,"id_str":"2541222271","name":"eon","screen_name":"eonhiei","location":"","description":"","url":"https:\/\/t.co\/O1GlQHQ3bT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/O1GlQHQ3bT","expanded_url":"http:\/\/familytravelfood.blogspot.com\/","display_url":"familytravelfood.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":40,"listed_count":30,"created_at":"Mon
|
71
|
+
Jun 02 10:48:33 +0000 2014","favourites_count":558,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1663,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473419161943560193\/u5nbXJBM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473419161943560193\/u5nbXJBM_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2541222271\/1462593302","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu
|
72
|
+
Dec 15 06:14:23 +0000 2016","id":809280423691960321,"id_str":"809280423691960321","text":"#pecanpie
|
73
|
+
#pecans #pie #yum #food https:\/\/t.co\/Nd20IPQOjv","truncated":false,"entities":{"hashtags":[{"text":"pecanpie","indices":[0,9]},{"text":"pecans","indices":[10,17]},{"text":"pie","indices":[18,22]},{"text":"yum","indices":[23,27]},{"text":"food","indices":[28,33]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":809280406918938625,"id_str":"809280406918938625","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CzskPgoWQAEwtwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CzskPgoWQAEwtwQ.jpg","url":"https:\/\/t.co\/Nd20IPQOjv","display_url":"pic.twitter.com\/Nd20IPQOjv","expanded_url":"https:\/\/twitter.com\/Jaqy_Q\/status\/809280423691960321\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":809280406918938625,"id_str":"809280406918938625","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CzskPgoWQAEwtwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CzskPgoWQAEwtwQ.jpg","url":"https:\/\/t.co\/Nd20IPQOjv","display_url":"pic.twitter.com\/Nd20IPQOjv","expanded_url":"https:\/\/twitter.com\/Jaqy_Q\/status\/809280423691960321\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"}}}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca
|
74
|
+
href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter
|
75
|
+
for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28196236,"id_str":"28196236","name":"Jackie
|
76
|
+
Smith","screen_name":"Jaqy_Q","location":"Michigan, USA","description":"Avid
|
77
|
+
Baker and Eater ~ \nVideo Game Enthusiast","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":37,"listed_count":1,"created_at":"Wed
|
78
|
+
Apr 01 21:08:40 +0000 2009","favourites_count":7,"utc_offset":-28800,"time_zone":"Pacific
|
79
|
+
Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":55,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/770066478032912384\/W2_rErAp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/770066478032912384\/W2_rErAp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28196236\/1472433170","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Thu
|
80
|
+
Dec 15 06:12:14 +0000 2016","id":809279882140078081,"id_str":"809279882140078081","text":"RT
|
81
|
+
@SusannahKellogg: All food should have ingredients this real!! >> https:\/\/t.co\/MRgiAyGIsW <<
|
82
|
+
#food #recipe #tasty #eat #ad #yum #eatme\u2026","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[109,114]},{"text":"recipe","indices":[115,122]},{"text":"tasty","indices":[123,129]},{"text":"eat","indices":[130,134]},{"text":"ad","indices":[135,138]},{"text":"yum","indices":[139,143]},{"text":"eatme","indices":[144,150]}],"symbols":[],"user_mentions":[{"screen_name":"SusannahKellogg","name":"Susannah
|
83
|
+
Kellogg","id":1340797357,"id_str":"1340797357","indices":[3,19]}],"urls":[{"url":"https:\/\/t.co\/MRgiAyGIsW","expanded_url":"https:\/\/ooh.li\/8b0805b","display_url":"ooh.li\/8b0805b","indices":[75,98]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
84
|
+
href=\"http:\/\/happilyblended.com\" rel=\"nofollow\"\u003eHappilyBlendedApp\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1490950092,"id_str":"1490950092","name":"Homemade
|
85
|
+
Hooplah","screen_name":"homemadehooplah","location":"Phoenix, AZ","description":"Hey
|
86
|
+
there! Name''s Chrisy. Blogger at http:\/\/t.co\/zmbHJeLtTD. Sharing all the
|
87
|
+
tasty recipes I make or find!","url":"http:\/\/t.co\/SotDse6GhT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/SotDse6GhT","expanded_url":"http:\/\/homemadehooplah.com","display_url":"homemadehooplah.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/zmbHJeLtTD","expanded_url":"http:\/\/HomemadeHooplah.com","display_url":"HomemadeHooplah.com","indices":[37,59]}]}},"protected":false,"followers_count":4510,"friends_count":1278,"listed_count":197,"created_at":"Fri
|
88
|
+
Jun 07 18:08:32 +0000 2013","favourites_count":1088,"utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"verified":false,"statuses_count":4715,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/742907184632070148\/xH2P4L5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/742907184632070148\/xH2P4L5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1490950092\/1439849641","profile_link_color":"F70655","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue
|
89
|
+
Dec 13 19:47:52 +0000 2016","id":808760367522414593,"id_str":"808760367522414593","text":"All
|
90
|
+
food should have ingredients this real!! >> https:\/\/t.co\/MRgiAyGIsW <<
|
91
|
+
#food #recipe #tasty #eat #ad #yum #eatme #realfood #realtasty","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[88,93]},{"text":"recipe","indices":[94,101]},{"text":"tasty","indices":[102,108]},{"text":"eat","indices":[109,113]},{"text":"ad","indices":[114,117]},{"text":"yum","indices":[118,122]},{"text":"eatme","indices":[123,129]},{"text":"realfood","indices":[130,139]},{"text":"realtasty","indices":[140,150]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MRgiAyGIsW","expanded_url":"https:\/\/ooh.li\/8b0805b","display_url":"ooh.li\/8b0805b","indices":[54,77]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
92
|
+
href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1340797357,"id_str":"1340797357","name":"Susannah
|
93
|
+
Kellogg","screen_name":"SusannahKellogg","location":"Washington, USA","description":"Grace
|
94
|
+
Filled Jesus Follower | Pastor''s Wife | Baby Mama | PNW | Coffee Drinker
|
95
|
+
| Lover of the Simple Moments \/\/ Inquiries: susannah.kellogg@gmail.com","url":"http:\/\/t.co\/Gafq3G7FHj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Gafq3G7FHj","expanded_url":"http:\/\/www.simplemomentsstick.com","display_url":"simplemomentsstick.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1757,"friends_count":779,"listed_count":106,"created_at":"Wed
|
96
|
+
Apr 10 02:16:55 +0000 2013","favourites_count":8793,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8856,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000050454684\/c4e2f4b361694643a2c87bfb8ebd30cc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000050454684\/c4e2f4b361694643a2c87bfb8ebd30cc.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/711331288049803264\/MPfzdu1K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/711331288049803264\/MPfzdu1K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1340797357\/1441825852","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":27,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":18,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu
|
97
|
+
Dec 15 06:11:01 +0000 2016","id":809279577327550466,"id_str":"809279577327550466","text":"Dinde
|
98
|
+
Au Vin (Turkey in Wine) https:\/\/t.co\/BmwRo7ZCbL #TW #food #recipe #yum
|
99
|
+
#nom #foodpor\u2026 https:\/\/t.co\/1U05sJXkPa https:\/\/t.co\/xzjVQtKm3q","truncated":false,"entities":{"hashtags":[{"text":"TW","indices":[54,57]},{"text":"food","indices":[58,63]},{"text":"recipe","indices":[64,71]},{"text":"yum","indices":[72,76]},{"text":"nom","indices":[77,81]},{"text":"foodpor","indices":[82,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BmwRo7ZCbL","expanded_url":"https:\/\/youtu.be\/ryXfiMjwH_s","display_url":"youtu.be\/ryXfiMjwH_s","indices":[30,53]}],"media":[{"id":809279574588747776,"id_str":"809279574588747776","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CzsjfD9XcAAJd1B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CzsjfD9XcAAJd1B.jpg","url":"https:\/\/t.co\/xzjVQtKm3q","display_url":"pic.twitter.com\/xzjVQtKm3q","expanded_url":"https:\/\/twitter.com\/food_lunatic\/status\/809279577327550466\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}},{"id":808078412279640064,"id_str":"808078412279640064","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CzbfCNqW8AA-yh7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CzbfCNqW8AA-yh7.jpg","url":"https:\/\/t.co\/1U05sJXkPa","display_url":"pic.twitter.com\/1U05sJXkPa","expanded_url":"https:\/\/twitter.com\/food_lunatic\/status\/808078415505068032\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":808078415505068032,"source_status_id_str":"808078415505068032","source_user_id":616475770,"source_user_id_str":"616475770"}]},"extended_entities":{"media":[{"id":809279574588747776,"id_str":"809279574588747776","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CzsjfD9XcAAJd1B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CzsjfD9XcAAJd1B.jpg","url":"https:\/\/t.co\/xzjVQtKm3q","display_url":"pic.twitter.com\/xzjVQtKm3q","expanded_url":"https:\/\/twitter.com\/food_lunatic\/status\/809279577327550466\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}},{"id":808078412279640064,"id_str":"808078412279640064","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CzbfCNqW8AA-yh7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CzbfCNqW8AA-yh7.jpg","url":"https:\/\/t.co\/1U05sJXkPa","display_url":"pic.twitter.com\/1U05sJXkPa","expanded_url":"https:\/\/twitter.com\/food_lunatic\/status\/808078415505068032\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":808078415505068032,"source_status_id_str":"808078415505068032","source_user_id":616475770,"source_user_id_str":"616475770"}]},"metadata":{"iso_language_code":"ro","result_type":"recent"},"source":"\u003ca
|
100
|
+
href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":616475770,"id_str":"616475770","name":"Foodlunatic","screen_name":"food_lunatic","location":"Northern
|
101
|
+
California","description":"Crazy food blogger exploring and sharing recipes
|
102
|
+
from around the world. Follow me and your eyes will never go hungry.","url":"https:\/\/t.co\/ccYpc17cii","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ccYpc17cii","expanded_url":"http:\/\/www.foodlunatic.com","display_url":"foodlunatic.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2485,"friends_count":2624,"listed_count":174,"created_at":"Sat
|
103
|
+
Jun 23 21:03:11 +0000 2012","favourites_count":843,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25170,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586686839\/83v7wb59j0sifj62de5z.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586686839\/83v7wb59j0sifj62de5z.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/796841314989936640\/lfNtbQUK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/796841314989936640\/lfNtbQUK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/616475770\/1478816884","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ro"},{"created_at":"Thu
|
104
|
+
Dec 15 06:10:26 +0000 2016","id":809279428417073152,"id_str":"809279428417073152","text":"New
|
105
|
+
Blog Post https:\/\/t.co\/Gh3ScMsKBd #food #foodie #xmas #sweettreats #yum
|
106
|
+
#chocolate #santa #christmas #dessert\u2026 https:\/\/t.co\/9xIAXm0QoO","truncated":true,"entities":{"hashtags":[{"text":"food","indices":[38,43]},{"text":"foodie","indices":[44,51]},{"text":"xmas","indices":[52,57]},{"text":"sweettreats","indices":[58,70]},{"text":"yum","indices":[71,75]},{"text":"chocolate","indices":[76,86]},{"text":"santa","indices":[87,93]},{"text":"christmas","indices":[94,104]},{"text":"dessert","indices":[105,113]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Gh3ScMsKBd","expanded_url":"http:\/\/www.ataleoftwocitys.com","display_url":"ataleoftwocitys.com","indices":[14,37]},{"url":"https:\/\/t.co\/9xIAXm0QoO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/809279428417073152","display_url":"twitter.com\/i\/web\/status\/8\u2026","indices":[115,138]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
107
|
+
href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter
|
108
|
+
for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":743285374122754049,"id_str":"743285374122754049","name":"Emma
|
109
|
+
& Jane","screen_name":"ataleoftwocitys","location":"","description":"Two besties
|
110
|
+
originally from Wellington, one crossed the ditch and now calls Melbourne
|
111
|
+
home. ataleoftwocitys@gmail.com","url":"https:\/\/t.co\/9lbQX8QsT6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9lbQX8QsT6","expanded_url":"http:\/\/www.ataleoftwocitys.com","display_url":"ataleoftwocitys.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":176,"friends_count":389,"listed_count":98,"created_at":"Thu
|
112
|
+
Jun 16 03:33:37 +0000 2016","favourites_count":1712,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":288,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/770422257709486084\/Go3J3CLN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/770422257709486084\/Go3J3CLN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/743285374122754049\/1466387316","profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu
|
113
|
+
Dec 15 06:03:59 +0000 2016","id":809277807448748033,"id_str":"809277807448748033","text":"Haitians
|
114
|
+
Vs Jamaicans PT 2! (FOOD) #Food Fight #Yum Food https:\/\/t.co\/k9WeOkSbQp","truncated":false,"entities":{"hashtags":[{"text":"Food","indices":[35,40]},{"text":"Yum","indices":[47,51]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/k9WeOkSbQp","expanded_url":"https:\/\/www.youtube.com\/shared?ci=9aPsjGGgUbA","display_url":"youtube.com\/shared?ci=9aPs\u2026","indices":[58,81]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
115
|
+
href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2242828354,"id_str":"2242828354","name":"Hip-Hoppian-Kilti","screen_name":"Leo16553765","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":102,"friends_count":448,"listed_count":7,"created_at":"Wed
|
116
|
+
Dec 25 07:02:01 +0000 2013","favourites_count":3664,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2488,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/523985444586135552\/BKiP3ygB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/523985444586135552\/BKiP3ygB_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu
|
117
|
+
Dec 15 05:55:09 +0000 2016","id":809275582055792640,"id_str":"809275582055792640","text":"RT
|
118
|
+
@SusannahKellogg: Why aren''t all ingredients this real? >> https:\/\/t.co\/MRgiAyYjku <<
|
119
|
+
#food #recipe #tasty #eat #ad #yum #eatme #realfo\u2026","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[102,107]},{"text":"recipe","indices":[108,115]},{"text":"tasty","indices":[116,122]},{"text":"eat","indices":[123,127]},{"text":"ad","indices":[128,131]},{"text":"yum","indices":[132,136]},{"text":"eatme","indices":[137,143]}],"symbols":[],"user_mentions":[{"screen_name":"SusannahKellogg","name":"Susannah
|
120
|
+
Kellogg","id":1340797357,"id_str":"1340797357","indices":[3,19]}],"urls":[{"url":"https:\/\/t.co\/MRgiAyYjku","expanded_url":"https:\/\/ooh.li\/8b0805b","display_url":"ooh.li\/8b0805b","indices":[68,91]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
121
|
+
href=\"http:\/\/happilyblended.com\" rel=\"nofollow\"\u003eHappilyBlendedApp\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15842588,"id_str":"15842588","name":"Jen
|
122
|
+
Rattie","screen_name":"craftymomof3","location":"Chicago Area - Northern IL","description":"Fibromyalgia
|
123
|
+
Fighter - Reviewer - Book Blogger - \u2764\ufe0f SciFi\/Paranormal - Foodie
|
124
|
+
- Pisces - Dyslexic - assistant at @promobooktours - Animal Lover #coffeeislife","url":"https:\/\/t.co\/RaGscs3o66","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RaGscs3o66","expanded_url":"http:\/\/about.me\/jrattie\/","display_url":"about.me\/jrattie\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":43176,"friends_count":25812,"listed_count":1521,"created_at":"Wed
|
125
|
+
Aug 13 21:19:49 +0000 2008","favourites_count":1587,"utc_offset":-21600,"time_zone":"Central
|
126
|
+
Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":104077,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B80F47","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/823600717\/35005ec34b69193a91f577f8af287aca.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/823600717\/35005ec34b69193a91f577f8af287aca.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/789460994640707584\/TJqYmLXD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/789460994640707584\/TJqYmLXD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15842588\/1443224514","profile_link_color":"C23061","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D3DEDA","profile_text_color":"C6575D","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed
|
127
|
+
Dec 14 20:31:10 +0000 2016","id":809133653003382784,"id_str":"809133653003382784","text":"Why
|
128
|
+
aren''t all ingredients this real? >> https:\/\/t.co\/MRgiAyYjku <<
|
129
|
+
#food #recipe #tasty #eat #ad #yum #eatme #realfood #realtasty","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[81,86]},{"text":"recipe","indices":[87,94]},{"text":"tasty","indices":[95,101]},{"text":"eat","indices":[102,106]},{"text":"ad","indices":[107,110]},{"text":"yum","indices":[111,115]},{"text":"eatme","indices":[116,122]},{"text":"realfood","indices":[123,132]},{"text":"realtasty","indices":[133,143]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MRgiAyYjku","expanded_url":"https:\/\/ooh.li\/8b0805b","display_url":"ooh.li\/8b0805b","indices":[47,70]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
130
|
+
href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1340797357,"id_str":"1340797357","name":"Susannah
|
131
|
+
Kellogg","screen_name":"SusannahKellogg","location":"Washington, USA","description":"Grace
|
132
|
+
Filled Jesus Follower | Pastor''s Wife | Baby Mama | PNW | Coffee Drinker
|
133
|
+
| Lover of the Simple Moments \/\/ Inquiries: susannah.kellogg@gmail.com","url":"http:\/\/t.co\/Gafq3G7FHj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Gafq3G7FHj","expanded_url":"http:\/\/www.simplemomentsstick.com","display_url":"simplemomentsstick.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1757,"friends_count":779,"listed_count":106,"created_at":"Wed
|
134
|
+
Apr 10 02:16:55 +0000 2013","favourites_count":8793,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8856,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000050454684\/c4e2f4b361694643a2c87bfb8ebd30cc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000050454684\/c4e2f4b361694643a2c87bfb8ebd30cc.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/711331288049803264\/MPfzdu1K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/711331288049803264\/MPfzdu1K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1340797357\/1441825852","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu
|
135
|
+
Dec 15 05:35:27 +0000 2016","id":809270626603171840,"id_str":"809270626603171840","text":"Homemade
|
136
|
+
Spicy Tuna Rolls[OC][2590x1797] #foodporn #food #foodie #yummy #yum #foodgasm
|
137
|
+
#nomnom #delicious #recipe https:\/\/t.co\/vs8BSyCeiS","truncated":false,"entities":{"hashtags":[{"text":"foodporn","indices":[41,50]},{"text":"food","indices":[51,56]},{"text":"foodie","indices":[57,64]},{"text":"yummy","indices":[65,71]},{"text":"yum","indices":[72,76]},{"text":"foodgasm","indices":[77,86]},{"text":"nomnom","indices":[87,94]},{"text":"delicious","indices":[95,105]},{"text":"recipe","indices":[106,113]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":809270624615067649,"id_str":"809270624615067649","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CzsbWGtW8AEro4X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CzsbWGtW8AEro4X.jpg","url":"https:\/\/t.co\/vs8BSyCeiS","display_url":"pic.twitter.com\/vs8BSyCeiS","expanded_url":"https:\/\/twitter.com\/cookingscarlet\/status\/809270626603171840\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":315,"resize":"fit"},"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":315,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":809270624615067649,"id_str":"809270624615067649","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CzsbWGtW8AEro4X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CzsbWGtW8AEro4X.jpg","url":"https:\/\/t.co\/vs8BSyCeiS","display_url":"pic.twitter.com\/vs8BSyCeiS","expanded_url":"https:\/\/twitter.com\/cookingscarlet\/status\/809270626603171840\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":315,"resize":"fit"},"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":315,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
105
138
|
href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":760950916866449408,"id_str":"760950916866449408","name":"Scarlet
|
106
139
|
Richardson","screen_name":"cookingscarlet","location":"New York, USA","description":"I
|
107
140
|
am Scarlet (35), mother and foodie! :)\nGet FREE Access to my recipe collection
|
108
|
-
please visit https:\/\/t.co\/ZUne28yGOI","url":"https:\/\/t.co\/ZUne28yGOI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZUne28yGOI","expanded_url":"http:\/\/bit.ly\/recipe-collection","display_url":"bit.ly\/recipe-collect\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZUne28yGOI","expanded_url":"http:\/\/bit.ly\/recipe-collection","display_url":"bit.ly\/recipe-collect\u2026","indices":[94,117]}]}},"protected":false,"followers_count":
|
109
|
-
Aug 03 21:30:11 +0000 2016","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":
|
110
|
-
|
111
|
-
|
112
|
-
#
|
113
|
-
href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":94826586,"id_str":"94826586","name":"Fit
|
114
|
-
Rocket Scientist","screen_name":"fitrocketsci","location":"Pasadena, CA","description":"Rocket
|
115
|
-
Scientist & Certified Personal Trainer. Find Your Balance. Active & Healthy.
|
116
|
-
Aspire to Inspire. Be true to your word. Become your best self. Enjoy life","url":"https:\/\/t.co\/CRSZh5pL9o","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CRSZh5pL9o","expanded_url":"http:\/\/www.fitrocketscientist.com\/","display_url":"fitrocketscientist.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":268,"friends_count":316,"listed_count":37,"created_at":"Sat
|
117
|
-
Dec 05 16:58:06 +0000 2009","favourites_count":725,"utc_offset":-18000,"time_zone":"Central
|
118
|
-
Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2080,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/440353612\/800px-Lockheed_Martin_F-22A_Raptor_JSOH.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/440353612\/800px-Lockheed_Martin_F-22A_Raptor_JSOH.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/763517603247632384\/M2b2JKY__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/763517603247632384\/M2b2JKY__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/94826586\/1467735080","profile_link_color":"ABB8C2","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":{"type":"Point","coordinates":[34.13751201,-118.3560388]},"coordinates":{"type":"Point","coordinates":[-118.3560388,34.13751201]},"place":{"id":"3b77caf94bfc81fe","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3b77caf94bfc81fe.json","place_type":"city","name":"Los
|
119
|
-
Angeles","full_name":"Los Angeles, CA","country_code":"US","country":"United
|
120
|
-
States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-118.668404,33.704538],[-118.155409,33.704538],[-118.155409,34.337041],[-118.668404,34.337041]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun
|
121
|
-
Nov 06 04:25:10 +0000 2016","id":795119811349147648,"id_str":"795119811349147648","text":"RT
|
122
|
-
@ILLmusa: If there is no struggle, there is no progress #food #sweet #yum
|
123
|
-
#chocolate #sweettooth #icecream #delish #weightloss #homecook\u2026","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[59,64]},{"text":"sweet","indices":[65,71]},{"text":"yum","indices":[72,76]},{"text":"chocolate","indices":[77,87]},{"text":"sweettooth","indices":[88,99]},{"text":"icecream","indices":[100,109]},{"text":"delish","indices":[110,117]},{"text":"weightloss","indices":[118,129]}],"symbols":[],"user_mentions":[{"screen_name":"ILLmusa","name":"\u2757\ufe0fMagic
|
124
|
-
Joe\u2757\ufe0f","id":726371961446617088,"id_str":"726371961446617088","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
125
|
-
href=\"http:\/\/foodnasta.com\" rel=\"nofollow\"\u003eFood Nasta\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4920902675,"id_str":"4920902675","name":"Food
|
126
|
-
Nasta","screen_name":"FoodNasta","location":"","description":"Follow US for
|
127
|
-
Best Food Images from all over the World\n\n#FoodNasta","url":"https:\/\/t.co\/TaRkaVDqio","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TaRkaVDqio","expanded_url":"https:\/\/www.instagram.com\/foodnasta\/","display_url":"instagram.com\/foodnasta\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4721,"friends_count":0,"listed_count":4113,"created_at":"Tue
|
128
|
-
Feb 16 20:40:42 +0000 2016","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":170708,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/699695299179257856\/ssioHcgS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/699695299179257856\/ssioHcgS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4920902675\/1455655356","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu
|
129
|
-
Nov 03 17:22:05 +0000 2016","id":794228166449655808,"id_str":"794228166449655808","text":"If
|
130
|
-
there is no struggle, there is no progress #food #sweet #yum #chocolate #sweettooth
|
131
|
-
#icecream #delish #weightloss #homecooked #snack","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[46,51]},{"text":"sweet","indices":[52,58]},{"text":"yum","indices":[59,63]},{"text":"chocolate","indices":[64,74]},{"text":"sweettooth","indices":[75,86]},{"text":"icecream","indices":[87,96]},{"text":"delish","indices":[97,104]},{"text":"weightloss","indices":[105,116]},{"text":"homecooked","indices":[117,128]},{"text":"snack","indices":[129,135]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
132
|
-
href=\"http:\/\/www.crowdfireapp.com\" rel=\"nofollow\"\u003eCrowdfire App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":726371961446617088,"id_str":"726371961446617088","name":"\u2757\ufe0fMagic
|
133
|
-
Joe\u2757\ufe0f","screen_name":"ILLmusa","location":"Kansas City, MO, USA","description":"eBook
|
134
|
-
author, engineer, inventor, car racer and real-life businessman. Magic Mike''s
|
135
|
-
age.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4428,"friends_count":4311,"listed_count":37,"created_at":"Sat
|
136
|
-
Apr 30 11:25:45 +0000 2016","favourites_count":1880,"utc_offset":-25200,"time_zone":"Pacific
|
137
|
-
Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":26,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/788683593874755585\/UqN8OjJA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/788683593874755585\/UqN8OjJA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/726371961446617088\/1477526774","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun
|
138
|
-
Nov 06 04:13:43 +0000 2016","id":795116932261445633,"id_str":"795116932261445633","text":"RT
|
139
|
-
@cookingscarlet: Crazy Japanese Candy [OC] [1170x650] #foodporn #food #foodie
|
140
|
-
#yummy #yum #foodgasm #nomnom #delicious #recipe https:\/\/t\u2026","truncated":false,"entities":{"hashtags":[{"text":"foodporn","indices":[57,66]},{"text":"food","indices":[67,72]},{"text":"foodie","indices":[73,80]},{"text":"yummy","indices":[81,87]},{"text":"yum","indices":[88,92]},{"text":"foodgasm","indices":[93,102]},{"text":"nomnom","indices":[103,110]},{"text":"delicious","indices":[111,121]},{"text":"recipe","indices":[122,129]}],"symbols":[],"user_mentions":[{"screen_name":"cookingscarlet","name":"Scarlet
|
141
|
-
Richardson","id":760950916866449408,"id_str":"760950916866449408","indices":[3,18]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
142
|
-
href=\"http:\/\/www.sfxworks.net\" rel=\"nofollow\"\u003equantom_nom\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":768783064277323776,"id_str":"768783064277323776","name":"quantom_food_bot","screen_name":"quantom_nom","location":"","description":"@quantomworks''
|
143
|
-
retweet bot! Follow me and @quantomworks with hashtags #food and #foodporn
|
144
|
-
for increased retweet chance!! Happy noming!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2326,"friends_count":3,"listed_count":3559,"created_at":"Thu
|
145
|
-
Aug 25 12:12:20 +0000 2016","favourites_count":53,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":171806,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/768787615223058432\/MD_3s3Z2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/768787615223058432\/MD_3s3Z2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/768783064277323776\/1472128224","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun
|
146
|
-
Nov 06 04:05:24 +0000 2016","id":795114839219798016,"id_str":"795114839219798016","text":"Crazy
|
147
|
-
Japanese Candy [OC] [1170x650] #foodporn #food #foodie #yummy #yum #foodgasm
|
148
|
-
#nomnom #delicious #recipe https:\/\/t.co\/FmU17HPcfd","truncated":false,"entities":{"hashtags":[{"text":"foodporn","indices":[37,46]},{"text":"food","indices":[47,52]},{"text":"foodie","indices":[53,60]},{"text":"yummy","indices":[61,67]},{"text":"yum","indices":[68,72]},{"text":"foodgasm","indices":[73,82]},{"text":"nomnom","indices":[83,90]},{"text":"delicious","indices":[91,101]},{"text":"recipe","indices":[102,109]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":795114835964993536,"id_str":"795114835964993536","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjQuwlWIAAG0Dt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjQuwlWIAAG0Dt.jpg","url":"https:\/\/t.co\/FmU17HPcfd","display_url":"pic.twitter.com\/FmU17HPcfd","expanded_url":"https:\/\/twitter.com\/cookingscarlet\/status\/795114839219798016\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":315,"resize":"fit"},"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":315,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":795114835964993536,"id_str":"795114835964993536","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjQuwlWIAAG0Dt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjQuwlWIAAG0Dt.jpg","url":"https:\/\/t.co\/FmU17HPcfd","display_url":"pic.twitter.com\/FmU17HPcfd","expanded_url":"https:\/\/twitter.com\/cookingscarlet\/status\/795114839219798016\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":315,"resize":"fit"},"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":315,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
141
|
+
please visit https:\/\/t.co\/ZUne28yGOI","url":"https:\/\/t.co\/ZUne28yGOI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZUne28yGOI","expanded_url":"http:\/\/bit.ly\/recipe-collection","display_url":"bit.ly\/recipe-collect\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZUne28yGOI","expanded_url":"http:\/\/bit.ly\/recipe-collection","display_url":"bit.ly\/recipe-collect\u2026","indices":[94,117]}]}},"protected":false,"followers_count":669,"friends_count":40,"listed_count":662,"created_at":"Wed
|
142
|
+
Aug 03 21:30:11 +0000 2016","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":46962,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/760952406280515586\/HJ0GRJbC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/760952406280515586\/HJ0GRJbC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/760950916866449408\/1470356728","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu
|
143
|
+
Dec 15 05:35:23 +0000 2016","id":809270610153062402,"id_str":"809270610153062402","text":"Rolled
|
144
|
+
Anchovy Stuffed with Capers on Pizza [5312 x 2388] [oc] #foodporn #food #foodie
|
145
|
+
#yummy #yum #foodgasm #nomno\u2026 https:\/\/t.co\/xY05T226LB","truncated":false,"entities":{"hashtags":[{"text":"foodporn","indices":[63,72]},{"text":"food","indices":[73,78]},{"text":"foodie","indices":[79,86]},{"text":"yummy","indices":[87,93]},{"text":"yum","indices":[94,98]},{"text":"foodgasm","indices":[99,108]},{"text":"nomno","indices":[109,115]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":809270608307568640,"id_str":"809270608307568640","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CzsbVJ9WQAAVkDf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CzsbVJ9WQAAVkDf.jpg","url":"https:\/\/t.co\/xY05T226LB","display_url":"pic.twitter.com\/xY05T226LB","expanded_url":"https:\/\/twitter.com\/cookingscarlet\/status\/809270610153062402\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":315,"resize":"fit"},"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":315,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":809270608307568640,"id_str":"809270608307568640","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CzsbVJ9WQAAVkDf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CzsbVJ9WQAAVkDf.jpg","url":"https:\/\/t.co\/xY05T226LB","display_url":"pic.twitter.com\/xY05T226LB","expanded_url":"https:\/\/twitter.com\/cookingscarlet\/status\/809270610153062402\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":315,"resize":"fit"},"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":315,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
149
146
|
href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":760950916866449408,"id_str":"760950916866449408","name":"Scarlet
|
150
147
|
Richardson","screen_name":"cookingscarlet","location":"New York, USA","description":"I
|
151
148
|
am Scarlet (35), mother and foodie! :)\nGet FREE Access to my recipe collection
|
152
|
-
please visit https:\/\/t.co\/ZUne28yGOI","url":"https:\/\/t.co\/ZUne28yGOI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZUne28yGOI","expanded_url":"http:\/\/bit.ly\/recipe-collection","display_url":"bit.ly\/recipe-collect\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZUne28yGOI","expanded_url":"http:\/\/bit.ly\/recipe-collection","display_url":"bit.ly\/recipe-collect\u2026","indices":[94,117]}]}},"protected":false,"followers_count":
|
153
|
-
Aug 03 21:30:11 +0000 2016","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
href=\"http:\/\/
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
#yummy #food #
|
172
|
-
|
173
|
-
href=\"http:\/\/
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
#foodporn #foodie\u2026 https:\/\/t.co\/srqso2pEtB","truncated":false,"entities":{"hashtags":[{"text":"Instafood","indices":[24,34]},{"text":"instapic","indices":[35,44]},{"text":"chinese","indices":[45,53]},{"text":"nom","indices":[54,58]},{"text":"yum","indices":[59,63]},{"text":"yummy","indices":[64,70]},{"text":"food","indices":[71,76]},{"text":"foodporn","indices":[77,86]},{"text":"foodie","indices":[87,94]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/srqso2pEtB","expanded_url":"https:\/\/www.instagram.com\/p\/BMdFxFPjYxB\/","display_url":"instagram.com\/p\/BMdFxFPjYxB\/","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
180
|
-
href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62732311,"id_str":"62732311","name":"Nidhi
|
181
|
-
Sharma","screen_name":"nidhify","location":"New Delhi","description":"Marketing
|
182
|
-
professional | Love to travel | Thinker | Explorer | Lover | Tweets are my
|
183
|
-
own.\nNo DMs please.","url":"https:\/\/t.co\/QfPrLASjgW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QfPrLASjgW","expanded_url":"https:\/\/perfectlyimperfectnidhi.wordpress.com\/","display_url":"perfectlyimperfectnidhi.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1213,"friends_count":599,"listed_count":47,"created_at":"Tue
|
184
|
-
Aug 04 05:49:33 +0000 2009","favourites_count":1589,"utc_offset":19800,"time_zone":"New
|
185
|
-
Delhi","geo_enabled":true,"verified":false,"statuses_count":5455,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/585475698585796608\/Bdri8uLh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/585475698585796608\/Bdri8uLh.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/792322767026728962\/SMDBZPiq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/792322767026728962\/SMDBZPiq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62732311\/1477739496","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun
|
186
|
-
Nov 06 04:05:24 +0000 2016","id":795114839219798016,"id_str":"795114839219798016","text":"Crazy
|
187
|
-
Japanese Candy [OC] [1170x650] #foodporn #food #foodie #yummy #yum #foodgasm
|
188
|
-
#nomnom #delicious #recipe https:\/\/t.co\/FmU17HPcfd","truncated":false,"entities":{"hashtags":[{"text":"foodporn","indices":[37,46]},{"text":"food","indices":[47,52]},{"text":"foodie","indices":[53,60]},{"text":"yummy","indices":[61,67]},{"text":"yum","indices":[68,72]},{"text":"foodgasm","indices":[73,82]},{"text":"nomnom","indices":[83,90]},{"text":"delicious","indices":[91,101]},{"text":"recipe","indices":[102,109]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":795114835964993536,"id_str":"795114835964993536","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjQuwlWIAAG0Dt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjQuwlWIAAG0Dt.jpg","url":"https:\/\/t.co\/FmU17HPcfd","display_url":"pic.twitter.com\/FmU17HPcfd","expanded_url":"https:\/\/twitter.com\/cookingscarlet\/status\/795114839219798016\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":315,"resize":"fit"},"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":315,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":795114835964993536,"id_str":"795114835964993536","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjQuwlWIAAG0Dt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjQuwlWIAAG0Dt.jpg","url":"https:\/\/t.co\/FmU17HPcfd","display_url":"pic.twitter.com\/FmU17HPcfd","expanded_url":"https:\/\/twitter.com\/cookingscarlet\/status\/795114839219798016\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":315,"resize":"fit"},"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":315,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
149
|
+
please visit https:\/\/t.co\/ZUne28yGOI","url":"https:\/\/t.co\/ZUne28yGOI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZUne28yGOI","expanded_url":"http:\/\/bit.ly\/recipe-collection","display_url":"bit.ly\/recipe-collect\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZUne28yGOI","expanded_url":"http:\/\/bit.ly\/recipe-collection","display_url":"bit.ly\/recipe-collect\u2026","indices":[94,117]}]}},"protected":false,"followers_count":669,"friends_count":40,"listed_count":662,"created_at":"Wed
|
150
|
+
Aug 03 21:30:11 +0000 2016","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":46962,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/760952406280515586\/HJ0GRJbC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/760952406280515586\/HJ0GRJbC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/760950916866449408\/1470356728","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu
|
151
|
+
Dec 15 05:33:06 +0000 2016","id":809270033788583941,"id_str":"809270033788583941","text":"#RoastBeef
|
152
|
+
#RoastBeefSandwich #Eeeeeats #FeedFeed #OnTheTable #Food #Foodie #FoodPorn
|
153
|
+
#Yum\u2026 https:\/\/t.co\/7mN9MUrA8p https:\/\/t.co\/S9C5FyUBoW","truncated":false,"entities":{"hashtags":[{"text":"RoastBeef","indices":[0,10]},{"text":"RoastBeefSandwich","indices":[11,29]},{"text":"Eeeeeats","indices":[30,39]},{"text":"FeedFeed","indices":[40,49]},{"text":"OnTheTable","indices":[50,61]},{"text":"Food","indices":[62,67]},{"text":"Foodie","indices":[68,75]},{"text":"FoodPorn","indices":[76,85]},{"text":"Yum","indices":[86,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7mN9MUrA8p","expanded_url":"http:\/\/ift.tt\/2hQ5KJS","display_url":"ift.tt\/2hQ5KJS","indices":[92,115]}],"media":[{"id":809270031871787008,"id_str":"809270031871787008","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CzsazmkWQAAXPPD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CzsazmkWQAAXPPD.jpg","url":"https:\/\/t.co\/S9C5FyUBoW","display_url":"pic.twitter.com\/S9C5FyUBoW","expanded_url":"https:\/\/twitter.com\/KWSKAN\/status\/809270033788583941\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":545,"h":680,"resize":"fit"},"medium":{"w":820,"h":1024,"resize":"fit"},"large":{"w":820,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":809270031871787008,"id_str":"809270031871787008","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CzsazmkWQAAXPPD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CzsazmkWQAAXPPD.jpg","url":"https:\/\/t.co\/S9C5FyUBoW","display_url":"pic.twitter.com\/S9C5FyUBoW","expanded_url":"https:\/\/twitter.com\/KWSKAN\/status\/809270033788583941\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":545,"h":680,"resize":"fit"},"medium":{"w":820,"h":1024,"resize":"fit"},"large":{"w":820,"h":1024,"resize":"fit"}}}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca
|
154
|
+
href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27700139,"id_str":"27700139","name":"Kevin
|
155
|
+
W S Kan","screen_name":"KWSKAN","location":"22.281646,114.151079","description":"Create,
|
156
|
+
Innovate, Educate The 6 P''s Prior, Preperation, Prevents, Piss, Poor, Performance!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1093,"friends_count":1992,"listed_count":328,"created_at":"Mon
|
157
|
+
Mar 30 18:38:40 +0000 2009","favourites_count":23,"utc_offset":28800,"time_zone":"Hong
|
158
|
+
Kong","geo_enabled":true,"verified":false,"statuses_count":36727,"lang":"zh-tw","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378692586\/Andy-Warhol-KNIVESX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378692586\/Andy-Warhol-KNIVESX.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644647212299911168\/Ww9fhsqX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644647212299911168\/Ww9fhsqX_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Thu
|
159
|
+
Dec 15 05:33:03 +0000 2016","id":809270022556237829,"id_str":"809270022556237829","text":"#RoastBeef
|
160
|
+
#RoastBeefSandwich #Eeeeeats #FeedFeed #OnTheTable #Food #Foodie #FoodPorn
|
161
|
+
#Yum\u2026 https:\/\/t.co\/7mN9MUrA8p https:\/\/t.co\/W6ap0XqaTU","truncated":false,"entities":{"hashtags":[{"text":"RoastBeef","indices":[0,10]},{"text":"RoastBeefSandwich","indices":[11,29]},{"text":"Eeeeeats","indices":[30,39]},{"text":"FeedFeed","indices":[40,49]},{"text":"OnTheTable","indices":[50,61]},{"text":"Food","indices":[62,67]},{"text":"Foodie","indices":[68,75]},{"text":"FoodPorn","indices":[76,85]},{"text":"Yum","indices":[86,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7mN9MUrA8p","expanded_url":"http:\/\/ift.tt\/2hQ5KJS","display_url":"ift.tt\/2hQ5KJS","indices":[92,115]}],"media":[{"id":809270020052238336,"id_str":"809270020052238336","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/Czsay6iWQAAUR8o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Czsay6iWQAAUR8o.jpg","url":"https:\/\/t.co\/W6ap0XqaTU","display_url":"pic.twitter.com\/W6ap0XqaTU","expanded_url":"https:\/\/twitter.com\/KWSKAN\/status\/809270022556237829\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":545,"h":680,"resize":"fit"},"medium":{"w":820,"h":1024,"resize":"fit"},"large":{"w":820,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":809270020052238336,"id_str":"809270020052238336","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/Czsay6iWQAAUR8o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Czsay6iWQAAUR8o.jpg","url":"https:\/\/t.co\/W6ap0XqaTU","display_url":"pic.twitter.com\/W6ap0XqaTU","expanded_url":"https:\/\/twitter.com\/KWSKAN\/status\/809270022556237829\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":545,"h":680,"resize":"fit"},"medium":{"w":820,"h":1024,"resize":"fit"},"large":{"w":820,"h":1024,"resize":"fit"}}}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca
|
162
|
+
href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27700139,"id_str":"27700139","name":"Kevin
|
163
|
+
W S Kan","screen_name":"KWSKAN","location":"22.281646,114.151079","description":"Create,
|
164
|
+
Innovate, Educate The 6 P''s Prior, Preperation, Prevents, Piss, Poor, Performance!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1093,"friends_count":1992,"listed_count":328,"created_at":"Mon
|
165
|
+
Mar 30 18:38:40 +0000 2009","favourites_count":23,"utc_offset":28800,"time_zone":"Hong
|
166
|
+
Kong","geo_enabled":true,"verified":false,"statuses_count":36727,"lang":"zh-tw","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378692586\/Andy-Warhol-KNIVESX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378692586\/Andy-Warhol-KNIVESX.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644647212299911168\/Ww9fhsqX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644647212299911168\/Ww9fhsqX_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Thu
|
167
|
+
Dec 15 05:18:20 +0000 2016","id":809266320093118464,"id_str":"809266320093118464","text":"Donuts\ud83c\udf69\n#donuts
|
168
|
+
#shop #yum #yummy #choco #chocolate #nuts #white #brown #food #foodpic #picture\u2026
|
169
|
+
https:\/\/t.co\/qrP422esCM","truncated":false,"entities":{"hashtags":[{"text":"donuts","indices":[8,15]},{"text":"shop","indices":[16,21]},{"text":"yum","indices":[22,26]},{"text":"yummy","indices":[27,33]},{"text":"choco","indices":[34,40]},{"text":"chocolate","indices":[41,51]},{"text":"nuts","indices":[52,57]},{"text":"white","indices":[58,64]},{"text":"brown","indices":[65,71]},{"text":"food","indices":[72,77]},{"text":"foodpic","indices":[78,86]},{"text":"picture","indices":[87,95]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qrP422esCM","expanded_url":"https:\/\/www.instagram.com\/p\/BN_kIAEjqb1\/","display_url":"instagram.com\/p\/BN_kIAEjqb1\/","indices":[97,120]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
170
|
+
href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4051057214,"id_str":"4051057214","name":"Nao","screen_name":"nao007251104","location":"kento","description":"\u5e73\u57ce\u6771
|
171
|
+
\u5439\u90e8 Electric bass & Contrabass\n \u2192\u6cd5\u56fd1\uff708\/white\/\u6d77\u5916\n @ArianaGrande\/#\u5c71\ufa11\u8ce2\u4eba","url":"https:\/\/t.co\/mSSra1BQiM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mSSra1BQiM","expanded_url":"http:\/\/instagram.com\/natu1104","display_url":"instagram.com\/natu1104","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":530,"listed_count":1,"created_at":"Wed
|
172
|
+
Oct 28 22:29:44 +0000 2015","favourites_count":5568,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3081,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/809270504297111553\/crM047EP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/809270504297111553\/crM047EP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4051057214\/1474613444","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu
|
173
|
+
Dec 15 05:15:55 +0000 2016","id":809265708609765376,"id_str":"809265708609765376","text":"Homemade
|
174
|
+
Spicy Tuna Rolls #sushi #food #foodporn #japanese #Japan #dinner #sashimi
|
175
|
+
#yummy #foodie #lunch #yum https:\/\/t.co\/dJDQ1pvMzA","truncated":false,"entities":{"hashtags":[{"text":"sushi","indices":[26,32]},{"text":"food","indices":[33,38]},{"text":"foodporn","indices":[39,48]},{"text":"japanese","indices":[49,58]},{"text":"Japan","indices":[59,65]},{"text":"dinner","indices":[66,73]},{"text":"sashimi","indices":[74,82]},{"text":"yummy","indices":[83,89]},{"text":"foodie","indices":[90,97]},{"text":"lunch","indices":[98,104]},{"text":"yum","indices":[105,109]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":809265706768408576,"id_str":"809265706768408576","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CzsW32TWIAAPLYp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CzsW32TWIAAPLYp.jpg","url":"https:\/\/t.co\/dJDQ1pvMzA","display_url":"pic.twitter.com\/dJDQ1pvMzA","expanded_url":"https:\/\/twitter.com\/cookingscarlet\/status\/809265708609765376\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":315,"resize":"fit"},"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":315,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":809265706768408576,"id_str":"809265706768408576","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CzsW32TWIAAPLYp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CzsW32TWIAAPLYp.jpg","url":"https:\/\/t.co\/dJDQ1pvMzA","display_url":"pic.twitter.com\/dJDQ1pvMzA","expanded_url":"https:\/\/twitter.com\/cookingscarlet\/status\/809265708609765376\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":315,"resize":"fit"},"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":600,"h":315,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
189
176
|
href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":760950916866449408,"id_str":"760950916866449408","name":"Scarlet
|
190
177
|
Richardson","screen_name":"cookingscarlet","location":"New York, USA","description":"I
|
191
178
|
am Scarlet (35), mother and foodie! :)\nGet FREE Access to my recipe collection
|
192
|
-
please visit https:\/\/t.co\/ZUne28yGOI","url":"https:\/\/t.co\/ZUne28yGOI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZUne28yGOI","expanded_url":"http:\/\/bit.ly\/recipe-collection","display_url":"bit.ly\/recipe-collect\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZUne28yGOI","expanded_url":"http:\/\/bit.ly\/recipe-collection","display_url":"bit.ly\/recipe-collect\u2026","indices":[94,117]}]}},"protected":false,"followers_count":
|
193
|
-
Aug 03 21:30:11 +0000 2016","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
#
|
205
|
-
|
206
|
-
Sharma","screen_name":"nidhify","location":"New Delhi","description":"Marketing
|
207
|
-
professional | Love to travel | Thinker | Explorer | Lover | Tweets are my
|
208
|
-
own.\nNo DMs please.","url":"https:\/\/t.co\/QfPrLASjgW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QfPrLASjgW","expanded_url":"https:\/\/perfectlyimperfectnidhi.wordpress.com\/","display_url":"perfectlyimperfectnidhi.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1213,"friends_count":599,"listed_count":47,"created_at":"Tue
|
209
|
-
Aug 04 05:49:33 +0000 2009","favourites_count":1589,"utc_offset":19800,"time_zone":"New
|
210
|
-
Delhi","geo_enabled":true,"verified":false,"statuses_count":5455,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/585475698585796608\/Bdri8uLh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/585475698585796608\/Bdri8uLh.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/792322767026728962\/SMDBZPiq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/792322767026728962\/SMDBZPiq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62732311\/1477739496","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun
|
211
|
-
Nov 06 03:58:34 +0000 2016","id":795113118741491713,"id_str":"795113118741491713","text":"RT
|
212
|
-
@ILLmusa: If there is no struggle, there is no progress #food #sweet #yum
|
213
|
-
#chocolate #sweettooth #icecream #delish #weightloss #homecook\u2026","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[59,64]},{"text":"sweet","indices":[65,71]},{"text":"yum","indices":[72,76]},{"text":"chocolate","indices":[77,87]},{"text":"sweettooth","indices":[88,99]},{"text":"icecream","indices":[100,109]},{"text":"delish","indices":[110,117]},{"text":"weightloss","indices":[118,129]}],"symbols":[],"user_mentions":[{"screen_name":"ILLmusa","name":"\u2757\ufe0fMagic
|
214
|
-
Joe\u2757\ufe0f","id":726371961446617088,"id_str":"726371961446617088","indices":[3,11]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
215
|
-
href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":732790150338596865,"id_str":"732790150338596865","name":"Angel
|
216
|
-
Ramon Medina","screen_name":"puertorico05971","location":"Salinas, Puerto
|
217
|
-
Rico","description":"Scifi Writer. Author of the Thousand Years War Series.
|
218
|
-
Leader of the Hybrid Nation, the future force of the literary world! Future
|
219
|
-
writers rise up please!","url":"https:\/\/t.co\/u8gerRSs4a","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/u8gerRSs4a","expanded_url":"http:\/\/www.hybridnationrevolution.com\/angel-ramon-medina-books","display_url":"hybridnationrevolution.com\/angel-ramon-me\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2193,"friends_count":2425,"listed_count":283,"created_at":"Wed
|
220
|
-
May 18 04:29:21 +0000 2016","favourites_count":4654,"utc_offset":-25200,"time_zone":"Pacific
|
221
|
-
Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":7849,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/788174245201268736\/BIPAXMZa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/788174245201268736\/BIPAXMZa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/732790150338596865\/1476750418","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu
|
222
|
-
Nov 03 17:22:05 +0000 2016","id":794228166449655808,"id_str":"794228166449655808","text":"If
|
223
|
-
there is no struggle, there is no progress #food #sweet #yum #chocolate #sweettooth
|
224
|
-
#icecream #delish #weightloss #homecooked #snack","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[46,51]},{"text":"sweet","indices":[52,58]},{"text":"yum","indices":[59,63]},{"text":"chocolate","indices":[64,74]},{"text":"sweettooth","indices":[75,86]},{"text":"icecream","indices":[87,96]},{"text":"delish","indices":[97,104]},{"text":"weightloss","indices":[105,116]},{"text":"homecooked","indices":[117,128]},{"text":"snack","indices":[129,135]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
225
|
-
href=\"http:\/\/www.crowdfireapp.com\" rel=\"nofollow\"\u003eCrowdfire App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":726371961446617088,"id_str":"726371961446617088","name":"\u2757\ufe0fMagic
|
226
|
-
Joe\u2757\ufe0f","screen_name":"ILLmusa","location":"Kansas City, MO, USA","description":"eBook
|
227
|
-
author, engineer, inventor, car racer and real-life businessman. Magic Mike''s
|
228
|
-
age.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4428,"friends_count":4311,"listed_count":37,"created_at":"Sat
|
229
|
-
Apr 30 11:25:45 +0000 2016","favourites_count":1880,"utc_offset":-25200,"time_zone":"Pacific
|
230
|
-
Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":26,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/788683593874755585\/UqN8OjJA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/788683593874755585\/UqN8OjJA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/726371961446617088\/1477526774","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun
|
231
|
-
Nov 06 03:56:40 +0000 2016","id":795112640628617217,"id_str":"795112640628617217","text":"RT
|
232
|
-
@Garlicked1: Cheeseburger stuffed peppers! #yum #food #foodporn #delicious
|
233
|
-
#beef #cooking https:\/\/t.co\/nFxvn2ELay","truncated":false,"entities":{"hashtags":[{"text":"yum","indices":[46,50]},{"text":"food","indices":[51,56]},{"text":"foodporn","indices":[57,66]},{"text":"delicious","indices":[67,77]},{"text":"beef","indices":[78,83]},{"text":"cooking","indices":[84,92]}],"symbols":[],"user_mentions":[{"screen_name":"Garlicked1","name":"Garlicked","id":3758229503,"id_str":"3758229503","indices":[3,14]}],"urls":[],"media":[{"id":795108168103698433,"id_str":"795108168103698433","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjKqo3VIAEllIf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjKqo3VIAEllIf.jpg","url":"https:\/\/t.co\/nFxvn2ELay","display_url":"pic.twitter.com\/nFxvn2ELay","expanded_url":"https:\/\/twitter.com\/Garlicked1\/status\/795108178950291456\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":795108178950291456,"source_status_id_str":"795108178950291456","source_user_id":3758229503,"source_user_id_str":"3758229503"}]},"extended_entities":{"media":[{"id":795108168103698433,"id_str":"795108168103698433","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjKqo3VIAEllIf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjKqo3VIAEllIf.jpg","url":"https:\/\/t.co\/nFxvn2ELay","display_url":"pic.twitter.com\/nFxvn2ELay","expanded_url":"https:\/\/twitter.com\/Garlicked1\/status\/795108178950291456\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":795108178950291456,"source_status_id_str":"795108178950291456","source_user_id":3758229503,"source_user_id_str":"3758229503"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
234
|
-
href=\"http:\/\/www.sfxworks.net\" rel=\"nofollow\"\u003equantom_nom\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":768783064277323776,"id_str":"768783064277323776","name":"quantom_food_bot","screen_name":"quantom_nom","location":"","description":"@quantomworks''
|
235
|
-
retweet bot! Follow me and @quantomworks with hashtags #food and #foodporn
|
236
|
-
for increased retweet chance!! Happy noming!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2326,"friends_count":3,"listed_count":3559,"created_at":"Thu
|
237
|
-
Aug 25 12:12:20 +0000 2016","favourites_count":53,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":171806,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/768787615223058432\/MD_3s3Z2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/768787615223058432\/MD_3s3Z2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/768783064277323776\/1472128224","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun
|
238
|
-
Nov 06 03:38:56 +0000 2016","id":795108178950291456,"id_str":"795108178950291456","text":"Cheeseburger
|
239
|
-
stuffed peppers! #yum #food #foodporn #delicious #beef #cooking https:\/\/t.co\/nFxvn2ELay","truncated":false,"entities":{"hashtags":[{"text":"yum","indices":[30,34]},{"text":"food","indices":[35,40]},{"text":"foodporn","indices":[41,50]},{"text":"delicious","indices":[51,61]},{"text":"beef","indices":[62,67]},{"text":"cooking","indices":[68,76]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":795108168103698433,"id_str":"795108168103698433","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjKqo3VIAEllIf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjKqo3VIAEllIf.jpg","url":"https:\/\/t.co\/nFxvn2ELay","display_url":"pic.twitter.com\/nFxvn2ELay","expanded_url":"https:\/\/twitter.com\/Garlicked1\/status\/795108178950291456\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":795108168103698433,"id_str":"795108168103698433","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjKqo3VIAEllIf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjKqo3VIAEllIf.jpg","url":"https:\/\/t.co\/nFxvn2ELay","display_url":"pic.twitter.com\/nFxvn2ELay","expanded_url":"https:\/\/twitter.com\/Garlicked1\/status\/795108178950291456\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
179
|
+
please visit https:\/\/t.co\/ZUne28yGOI","url":"https:\/\/t.co\/ZUne28yGOI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZUne28yGOI","expanded_url":"http:\/\/bit.ly\/recipe-collection","display_url":"bit.ly\/recipe-collect\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZUne28yGOI","expanded_url":"http:\/\/bit.ly\/recipe-collection","display_url":"bit.ly\/recipe-collect\u2026","indices":[94,117]}]}},"protected":false,"followers_count":669,"friends_count":40,"listed_count":662,"created_at":"Wed
|
180
|
+
Aug 03 21:30:11 +0000 2016","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":46962,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/760952406280515586\/HJ0GRJbC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/760952406280515586\/HJ0GRJbC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/760950916866449408\/1470356728","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu
|
181
|
+
Dec 15 05:12:40 +0000 2016","id":809264894218358784,"id_str":"809264894218358784","text":"Polar
|
182
|
+
bear snack by @Starbucks. #starbucks #christmas #cookie #cute #animals #PolarBears
|
183
|
+
#food #yum #snacktime\u2026 https:\/\/t.co\/A9ZJMPsgO2","truncated":true,"entities":{"hashtags":[{"text":"starbucks","indices":[32,42]},{"text":"christmas","indices":[43,53]},{"text":"cookie","indices":[54,61]},{"text":"cute","indices":[62,67]},{"text":"animals","indices":[68,76]},{"text":"PolarBears","indices":[77,88]},{"text":"food","indices":[89,94]},{"text":"yum","indices":[95,99]},{"text":"snacktime","indices":[100,110]}],"symbols":[],"user_mentions":[{"screen_name":"Starbucks","name":"Starbucks
|
184
|
+
Coffee","id":30973,"id_str":"30973","indices":[20,30]}],"urls":[{"url":"https:\/\/t.co\/A9ZJMPsgO2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/809264894218358784","display_url":"twitter.com\/i\/web\/status\/8\u2026","indices":[112,135]}]},"metadata":{"iso_language_code":"sv","result_type":"recent"},"source":"\u003ca
|
185
|
+
href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":725654863921577985,"id_str":"725654863921577985","name":"levine
|
186
|
+
\u2764","screen_name":"slumberdolls","location":"","description":"A simple
|
187
|
+
cat with a passion for makeup, fashion and food. \u2277\u2022 \u072b\u2022\u2276","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":96,"friends_count":116,"listed_count":30,"created_at":"Thu
|
188
|
+
Apr 28 11:56:16 +0000 2016","favourites_count":124,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":443,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/761914457727471616\/P5kjgf4w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/761914457727471616\/P5kjgf4w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/725654863921577985\/1472195772","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"sv"},{"created_at":"Thu
|
189
|
+
Dec 15 05:04:06 +0000 2016","id":809262736324575233,"id_str":"809262736324575233","text":"@kitchenaidusa
|
190
|
+
@ikeausa #copper #chef #pans work great! #food #braised #tbone #steak with
|
191
|
+
#potatoes and #greenbeans\u2026 https:\/\/t.co\/MPIeKjiymp","truncated":true,"entities":{"hashtags":[{"text":"copper","indices":[24,31]},{"text":"chef","indices":[32,37]},{"text":"pans","indices":[38,43]},{"text":"food","indices":[56,61]},{"text":"braised","indices":[62,70]},{"text":"tbone","indices":[71,77]},{"text":"steak","indices":[78,84]},{"text":"potatoes","indices":[90,99]},{"text":"greenbeans","indices":[104,115]}],"symbols":[],"user_mentions":[{"screen_name":"KitchenAidUSA","name":"KitchenAid","id":105178925,"id_str":"105178925","indices":[0,14]},{"screen_name":"IKEAUSA","name":"IKEA
|
192
|
+
USA","id":303827856,"id_str":"303827856","indices":[15,23]}],"urls":[{"url":"https:\/\/t.co\/MPIeKjiymp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/809262736324575233","display_url":"twitter.com\/i\/web\/status\/8\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
240
193
|
href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter
|
241
|
-
for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
@iamvinitshinde: Barbeqe Nation @BarbequeNation #food #arabian #fun #yum #bbq
|
247
|
-
#love \ud83d\ude03\ud83d\ude19\ud83c\udf78\ud83c\udf77\ud83c\udf79\ud83c\udf74\ud83c\udf68\ud83c\udf67\ud83c\udf66\ud83c\udf69\ud83c\udf70\ud83c\udf6b\ud83c\udf6e\ud83c\udf6f\ud83c\udf54\ud83c\udf5d\ud83c\udf55\ud83c\udf56\ud83c\udf57\ud83c\udf64\ud83c\udf71\ud83c\udf5c\ud83c\udf5b\ud83c\udf72\ud83c\udf62\ud83c\udf61
|
248
|
-
https:\/\/t.co\/YQR02wnXaH","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[51,56]},{"text":"arabian","indices":[57,65]},{"text":"fun","indices":[66,70]},{"text":"yum","indices":[71,75]},{"text":"bbq","indices":[76,80]},{"text":"love","indices":[81,86]}],"symbols":[],"user_mentions":[{"screen_name":"iamvinitshinde","name":"Vinit
|
249
|
-
Shi\u0144de \u2744","id":96771717,"id_str":"96771717","indices":[3,18]},{"screen_name":"BarbequeNation","name":"Barbeque
|
250
|
-
Nation","id":3069153271,"id_str":"3069153271","indices":[35,50]}],"urls":[],"media":[{"id":795109607651753984,"id_str":"795109607651753984","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjL-bmVQAAcW7T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjL-bmVQAAcW7T.jpg","url":"https:\/\/t.co\/YQR02wnXaH","display_url":"pic.twitter.com\/YQR02wnXaH","expanded_url":"https:\/\/twitter.com\/iamvinitshinde\/status\/795109758466260992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"}},"source_status_id":795109758466260992,"source_status_id_str":"795109758466260992","source_user_id":96771717,"source_user_id_str":"96771717"}]},"extended_entities":{"media":[{"id":795109607651753984,"id_str":"795109607651753984","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjL-bmVQAAcW7T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjL-bmVQAAcW7T.jpg","url":"https:\/\/t.co\/YQR02wnXaH","display_url":"pic.twitter.com\/YQR02wnXaH","expanded_url":"https:\/\/twitter.com\/iamvinitshinde\/status\/795109758466260992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"}},"source_status_id":795109758466260992,"source_status_id_str":"795109758466260992","source_user_id":96771717,"source_user_id_str":"96771717"},{"id":795109635187294208,"id_str":"795109635187294208","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjMACLUQAApSGI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjMACLUQAApSGI.jpg","url":"https:\/\/t.co\/YQR02wnXaH","display_url":"pic.twitter.com\/YQR02wnXaH","expanded_url":"https:\/\/twitter.com\/iamvinitshinde\/status\/795109758466260992\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":575,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":575,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"}},"source_status_id":795109758466260992,"source_status_id_str":"795109758466260992","source_user_id":96771717,"source_user_id_str":"96771717"}]},"metadata":{"iso_language_code":"da","result_type":"recent"},"source":"\u003ca
|
251
|
-
href=\"http:\/\/www.sfxworks.net\" rel=\"nofollow\"\u003equantom_nom\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":768783064277323776,"id_str":"768783064277323776","name":"quantom_food_bot","screen_name":"quantom_nom","location":"","description":"@quantomworks''
|
252
|
-
retweet bot! Follow me and @quantomworks with hashtags #food and #foodporn
|
253
|
-
for increased retweet chance!! Happy noming!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2326,"friends_count":3,"listed_count":3559,"created_at":"Thu
|
254
|
-
Aug 25 12:12:20 +0000 2016","favourites_count":53,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":171806,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/768787615223058432\/MD_3s3Z2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/768787615223058432\/MD_3s3Z2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/768783064277323776\/1472128224","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun
|
255
|
-
Nov 06 03:45:13 +0000 2016","id":795109758466260992,"id_str":"795109758466260992","text":"Barbeqe
|
256
|
-
Nation @BarbequeNation #food #arabian #fun #yum #bbq #love \ud83d\ude03\ud83d\ude19\ud83c\udf78\ud83c\udf77\ud83c\udf79\ud83c\udf74\ud83c\udf68\ud83c\udf67\ud83c\udf66\ud83c\udf69\ud83c\udf70\ud83c\udf6b\ud83c\udf6e\ud83c\udf6f\ud83c\udf54\ud83c\udf5d\ud83c\udf55\ud83c\udf56\ud83c\udf57\ud83c\udf64\ud83c\udf71\ud83c\udf5c\ud83c\udf5b\ud83c\udf72\ud83c\udf62\ud83c\udf61
|
257
|
-
https:\/\/t.co\/YQR02wnXaH","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[31,36]},{"text":"arabian","indices":[37,45]},{"text":"fun","indices":[46,50]},{"text":"yum","indices":[51,55]},{"text":"bbq","indices":[56,60]},{"text":"love","indices":[61,66]}],"symbols":[],"user_mentions":[{"screen_name":"BarbequeNation","name":"Barbeque
|
258
|
-
Nation","id":3069153271,"id_str":"3069153271","indices":[15,30]}],"urls":[],"media":[{"id":795109607651753984,"id_str":"795109607651753984","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjL-bmVQAAcW7T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjL-bmVQAAcW7T.jpg","url":"https:\/\/t.co\/YQR02wnXaH","display_url":"pic.twitter.com\/YQR02wnXaH","expanded_url":"https:\/\/twitter.com\/iamvinitshinde\/status\/795109758466260992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":795109607651753984,"id_str":"795109607651753984","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjL-bmVQAAcW7T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjL-bmVQAAcW7T.jpg","url":"https:\/\/t.co\/YQR02wnXaH","display_url":"pic.twitter.com\/YQR02wnXaH","expanded_url":"https:\/\/twitter.com\/iamvinitshinde\/status\/795109758466260992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"}}},{"id":795109635187294208,"id_str":"795109635187294208","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjMACLUQAApSGI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjMACLUQAApSGI.jpg","url":"https:\/\/t.co\/YQR02wnXaH","display_url":"pic.twitter.com\/YQR02wnXaH","expanded_url":"https:\/\/twitter.com\/iamvinitshinde\/status\/795109758466260992\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":575,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":575,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"}}}]},"metadata":{"iso_language_code":"da","result_type":"recent"},"source":"\u003ca
|
259
|
-
href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter
|
260
|
-
for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":96771717,"id_str":"96771717","name":"Vinit
|
261
|
-
Shi\u0144de \u2744","screen_name":"iamvinitshinde","location":"Mumbai, India","description":"\u039butomobile
|
262
|
-
Engg, Car lover, Gamer, Blogger, Motivator, Dreamer, Coffeeholic, Gadget &
|
263
|
-
Music Freak, \u26bd\/ cricket, Workhard\/Partyharder","url":"https:\/\/t.co\/264Xnt6Q9U","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/264Xnt6Q9U","expanded_url":"http:\/\/iamvinitshinde.tumblr.com\/","display_url":"iamvinitshinde.tumblr.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62622,"friends_count":67825,"listed_count":125,"created_at":"Mon
|
264
|
-
Dec 14 14:36:38 +0000 2009","favourites_count":18617,"utc_offset":19800,"time_zone":"Asia\/Kolkata","geo_enabled":false,"verified":false,"statuses_count":17758,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/677782650\/afc794e8fa525e4055a07235f284941f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/677782650\/afc794e8fa525e4055a07235f284941f.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/743485166652428288\/Yv-eJotG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/743485166652428288\/Yv-eJotG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/96771717\/1425400123","profile_link_color":"5A5247","profile_sidebar_border_color":"794725","profile_sidebar_fill_color":"1D130D","profile_text_color":"AA642E","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"da"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"da"},{"created_at":"Sun
|
265
|
-
Nov 06 03:45:13 +0000 2016","id":795109758466260992,"id_str":"795109758466260992","text":"Barbeqe
|
266
|
-
Nation @BarbequeNation #food #arabian #fun #yum #bbq #love \ud83d\ude03\ud83d\ude19\ud83c\udf78\ud83c\udf77\ud83c\udf79\ud83c\udf74\ud83c\udf68\ud83c\udf67\ud83c\udf66\ud83c\udf69\ud83c\udf70\ud83c\udf6b\ud83c\udf6e\ud83c\udf6f\ud83c\udf54\ud83c\udf5d\ud83c\udf55\ud83c\udf56\ud83c\udf57\ud83c\udf64\ud83c\udf71\ud83c\udf5c\ud83c\udf5b\ud83c\udf72\ud83c\udf62\ud83c\udf61
|
267
|
-
https:\/\/t.co\/YQR02wnXaH","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[31,36]},{"text":"arabian","indices":[37,45]},{"text":"fun","indices":[46,50]},{"text":"yum","indices":[51,55]},{"text":"bbq","indices":[56,60]},{"text":"love","indices":[61,66]}],"symbols":[],"user_mentions":[{"screen_name":"BarbequeNation","name":"Barbeque
|
268
|
-
Nation","id":3069153271,"id_str":"3069153271","indices":[15,30]}],"urls":[],"media":[{"id":795109607651753984,"id_str":"795109607651753984","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjL-bmVQAAcW7T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjL-bmVQAAcW7T.jpg","url":"https:\/\/t.co\/YQR02wnXaH","display_url":"pic.twitter.com\/YQR02wnXaH","expanded_url":"https:\/\/twitter.com\/iamvinitshinde\/status\/795109758466260992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":795109607651753984,"id_str":"795109607651753984","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjL-bmVQAAcW7T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjL-bmVQAAcW7T.jpg","url":"https:\/\/t.co\/YQR02wnXaH","display_url":"pic.twitter.com\/YQR02wnXaH","expanded_url":"https:\/\/twitter.com\/iamvinitshinde\/status\/795109758466260992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"}}},{"id":795109635187294208,"id_str":"795109635187294208","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjMACLUQAApSGI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjMACLUQAApSGI.jpg","url":"https:\/\/t.co\/YQR02wnXaH","display_url":"pic.twitter.com\/YQR02wnXaH","expanded_url":"https:\/\/twitter.com\/iamvinitshinde\/status\/795109758466260992\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":575,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":575,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"}}}]},"metadata":{"iso_language_code":"da","result_type":"recent"},"source":"\u003ca
|
269
|
-
href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter
|
270
|
-
for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":96771717,"id_str":"96771717","name":"Vinit
|
271
|
-
Shi\u0144de \u2744","screen_name":"iamvinitshinde","location":"Mumbai, India","description":"\u039butomobile
|
272
|
-
Engg, Car lover, Gamer, Blogger, Motivator, Dreamer, Coffeeholic, Gadget &
|
273
|
-
Music Freak, \u26bd\/ cricket, Workhard\/Partyharder","url":"https:\/\/t.co\/264Xnt6Q9U","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/264Xnt6Q9U","expanded_url":"http:\/\/iamvinitshinde.tumblr.com\/","display_url":"iamvinitshinde.tumblr.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62622,"friends_count":67825,"listed_count":125,"created_at":"Mon
|
274
|
-
Dec 14 14:36:38 +0000 2009","favourites_count":18617,"utc_offset":19800,"time_zone":"Asia\/Kolkata","geo_enabled":false,"verified":false,"statuses_count":17758,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/677782650\/afc794e8fa525e4055a07235f284941f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/677782650\/afc794e8fa525e4055a07235f284941f.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/743485166652428288\/Yv-eJotG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/743485166652428288\/Yv-eJotG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/96771717\/1425400123","profile_link_color":"5A5247","profile_sidebar_border_color":"794725","profile_sidebar_fill_color":"1D130D","profile_text_color":"AA642E","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"da"}],"search_metadata":{"completed_in":0.027,"max_id":795128652753055744,"max_id_str":"795128652753055744","next_results":"?max_id=795109758466260991&q=%23food%20%23yum&include_entities=1","query":"%23food+%23yum","refresh_url":"?since_id=795128652753055744&q=%23food%20%23yum&include_entities=1","count":15,"since_id":0,"since_id_str":"0"}}'
|
194
|
+
for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":105178925,"in_reply_to_user_id_str":"105178925","in_reply_to_screen_name":"KitchenAidUSA","user":{"id":1957443828,"id_str":"1957443828","name":"Romella
|
195
|
+
EK","screen_name":"RomellaJanene","location":"DC Metro Area","description":"#Budding
|
196
|
+
#Media #Mogul. #Psychologist. #Economist. #EEOExpert. #Speaker. My views are
|
197
|
+
my own. https:\/\/t.co\/HttpdQ9O77 #Great #View #Television #GVTV","url":"https:\/\/t.co\/4FfdZ4keZt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4FfdZ4keZt","expanded_url":"http:\/\/www.Allemore.com","display_url":"Allemore.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/HttpdQ9O77","expanded_url":"http:\/\/Instagram.com\/romellajanene\/","display_url":"Instagram.com\/romellajanene\/","indices":[94,117]}]}},"protected":false,"followers_count":815,"friends_count":80,"listed_count":28,"created_at":"Sat
|
198
|
+
Oct 12 20:51:56 +0000 2013","favourites_count":955,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":743,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639460346227490817\/xRaPGreA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639460346227490817\/xRaPGreA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1957443828\/1479408554","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}],"search_metadata":{"completed_in":0.036,"max_id":809284043539742720,"max_id_str":"809284043539742720","next_results":"?max_id=809262736324575232&q=%23food%20%23yum&include_entities=1","query":"%23food+%23yum","refresh_url":"?since_id=809284043539742720&q=%23food%20%23yum&include_entities=1","count":15,"since_id":0,"since_id_str":"0"}}'
|
275
199
|
http_version:
|
276
|
-
recorded_at:
|
200
|
+
recorded_at: Thu, 15 Dec 2016 06:37:25 GMT
|
277
201
|
recorded_with: VCR 3.0.3
|