tweetsearch 0.1.1 → 0.1.2
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/.gitignore +3 -1
- data/bin/tweetsearch +3 -3
- data/lib/tweetsearch/tweet.rb +2 -3
- data/lib/tweetsearch/twitter_client.rb +9 -7
- data/lib/tweetsearch/version.rb +1 -1
- data/spec/support/cassettes/tweet_spec_should_return_Tweets_that_contain_specific_hashtags.yml +210 -165
- data/spec/support/cassettes/twitter_client_spec_should_return_Tweets_that_contain_specific_hashtags.yml +210 -165
- data/spec/tweetsearch/tweet_spec.rb +1 -3
- data/spec/tweetsearch/twitter_client_spec.rb +2 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0540f3580085530aaeff366afcb1a91ae7d100d2
|
4
|
+
data.tar.gz: 40416aa10909fc5a014f5996c62a6f8f998ee39f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6eae995a71b09123139811b66e3ae092e41145aca2298bc8692314e11eb450ea1a504a12bd1413950cb8f82e4ff19321c3f4652b6d66055ab43f59fdb7432581
|
7
|
+
data.tar.gz: 2c42bb2ba34ab84c0121204e4c5b6682feeebd6660a2cf8b0b4ead2c0dadba19484f3c986dd9b205ab116fcced3941d697825864dbf01491ab7dd71452679acb
|
data/.gitignore
CHANGED
data/bin/tweetsearch
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
$LOAD_PATH.unshift File.join(File.dirname(__FILE__),
|
4
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
5
|
+
|
5
6
|
require 'tweetsearch'
|
6
7
|
|
7
8
|
if ENV['access_token'].nil?
|
@@ -12,7 +13,6 @@ end
|
|
12
13
|
print 'Hashtags (separated by space): '
|
13
14
|
tags = gets.chomp.split.map { |tag| tag.start_with?('#') ? tag : "##{tag}" }
|
14
15
|
|
15
|
-
|
16
|
-
tweets = TweetSearch::Tweet.search(tags, using_client: client)
|
16
|
+
tweets = TweetSearch::Tweet.search(tags)
|
17
17
|
|
18
18
|
tweets.each { |item| print item.text + "\n" }
|
data/lib/tweetsearch/tweet.rb
CHANGED
@@ -9,9 +9,8 @@ module TweetSearch
|
|
9
9
|
@text = data['text']
|
10
10
|
end
|
11
11
|
|
12
|
-
def self.search(*tags
|
13
|
-
|
14
|
-
client.search_tweets(tags).map { |data| new(data) }
|
12
|
+
def self.search(*tags)
|
13
|
+
TwitterClient.search_tweets(tags).map { |data| new(data) }
|
15
14
|
end
|
16
15
|
end
|
17
16
|
end
|
@@ -8,20 +8,22 @@ module TweetSearch
|
|
8
8
|
API_VERSION = '1.1/'
|
9
9
|
SEARCH_TWEET_ENDPOINT = URI.join(API_BASE, API_VERSION, 'search/tweets.json')
|
10
10
|
|
11
|
-
def
|
12
|
-
@
|
11
|
+
def self.config=(conf)
|
12
|
+
@config ? @config.update(conf) : (@config = conf)
|
13
13
|
end
|
14
14
|
|
15
|
-
def
|
15
|
+
def self.config
|
16
|
+
@config ||= { access_token: ENV['access_token'] }
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.search_tweets(*tags)
|
16
20
|
HTTParty.get(SEARCH_TWEET_ENDPOINT,
|
17
21
|
headers: authorization_header,
|
18
22
|
query: { q: tags.join(' ') }).parsed_response['statuses']
|
19
23
|
end
|
20
24
|
|
21
|
-
|
22
|
-
|
23
|
-
def authorization_header
|
24
|
-
@authorization_header ||= { Authorization: "Bearer #{@access_token}" }
|
25
|
+
def self.authorization_header
|
26
|
+
@authorization_header ||= { Authorization: "Bearer #{config[:access_token]}" }
|
25
27
|
end
|
26
28
|
end
|
27
29
|
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
|
+
- '85696'
|
23
23
|
Content-Type:
|
24
24
|
- application/json;charset=utf-8
|
25
25
|
Date:
|
26
|
-
-
|
26
|
+
- Sun, 06 Nov 2016 05:03:44 GMT
|
27
27
|
Expires:
|
28
28
|
- Tue, 31 Mar 1981 05:00:00 GMT
|
29
29
|
Last-Modified:
|
30
|
-
-
|
30
|
+
- Sun, 06 Nov 2016 05:03:44 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%3A147840862447958289; Domain=.twitter.com; Path=/; Expires=Tue,
|
37
|
+
06-Nov-2018 05:03:44 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
|
+
- a86e437f18b5c3092175774513ce722a
|
46
46
|
X-Content-Type-Options:
|
47
47
|
- nosniff
|
48
48
|
X-Frame-Options:
|
@@ -50,183 +50,228 @@ http_interactions:
|
|
50
50
|
X-Rate-Limit-Limit:
|
51
51
|
- '450'
|
52
52
|
X-Rate-Limit-Remaining:
|
53
|
-
- '
|
53
|
+
- '445'
|
54
54
|
X-Rate-Limit-Reset:
|
55
|
-
- '
|
55
|
+
- '1478408724'
|
56
56
|
X-Response-Time:
|
57
|
-
- '
|
57
|
+
- '61'
|
58
58
|
X-Transaction:
|
59
|
-
-
|
59
|
+
- 006944fd00e0f921
|
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
|
-
|
66
|
+
string: '{"statuses":[{"created_at":"Sun Nov 06 05:00:18 +0000 2016","id":795128652753055744,"id_str":"795128652753055744","text":"RT
|
67
|
+
@TheEyesofaBoy: 5 Minute Fries with @beautyandbedlam -->> https:\/\/t.co\/CSrnP9zbtS
|
68
|
+
#ad #YUM #fries #Food #FoodFri #FoodieFriday https:\/\/t\u2026","truncated":false,"entities":{"hashtags":[{"text":"ad","indices":[91,94]},{"text":"YUM","indices":[95,99]},{"text":"fries","indices":[100,106]},{"text":"Food","indices":[107,112]},{"text":"FoodFri","indices":[113,121]},{"text":"FoodieFriday","indices":[122,135]}],"symbols":[],"user_mentions":[{"screen_name":"TheEyesofaBoy","name":"The
|
69
|
+
Eyes of a Boy","id":1075440950,"id_str":"1075440950","indices":[3,17]},{"screen_name":"beautyandbedlam","name":"Jen
|
70
|
+
Schmidt","id":17397651,"id_str":"17397651","indices":[39,55]}],"urls":[{"url":"https:\/\/t.co\/CSrnP9zbtS","expanded_url":"https:\/\/goo.gl\/4dvr88","display_url":"goo.gl\/4dvr88","indices":[67,90]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
71
|
+
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":254898971,"id_str":"254898971","name":"Erin
|
72
|
+
Kennedy","screen_name":"MyThirtySpot","location":"Phoenix","description":"A
|
73
|
+
website dedicated to women in their 30s and our journey. Beauty, anti-aging,
|
74
|
+
fashion, motherhood, health, recipes, love, Life. \r\nhttp:\/\/t.co\/74hdiKGMRS","url":"http:\/\/t.co\/dKusvupQWx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/dKusvupQWx","expanded_url":"http:\/\/www.facebook.com\/MyThirtySpot","display_url":"facebook.com\/MyThirtySpot","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/74hdiKGMRS","expanded_url":"http:\/\/www.mythirtyspot.com","display_url":"mythirtyspot.com","indices":[131,153]}]}},"protected":false,"followers_count":19566,"friends_count":6219,"listed_count":955,"created_at":"Sun
|
75
|
+
Feb 20 06:59:15 +0000 2011","favourites_count":2921,"utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"verified":false,"statuses_count":25539,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DB447B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000033253450\/1d6e3afba394f401aa6440cdbfde0a9b.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000033253450\/1d6e3afba394f401aa6440cdbfde0a9b.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2030183094\/my_thirty_spot_facebook_2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2030183094\/my_thirty_spot_facebook_2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/254898971\/1406587661","profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F79C56","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,"retweeted_status":{"created_at":"Fri
|
76
|
+
Nov 04 19:16:42 +0000 2016","id":794619397793075204,"id_str":"794619397793075204","text":"5
|
77
|
+
Minute Fries with @beautyandbedlam -->> https:\/\/t.co\/CSrnP9zbtS #ad
|
78
|
+
#YUM #fries #Food #FoodFri #FoodieFriday https:\/\/t.co\/6dtlZVnW9w","truncated":false,"entities":{"hashtags":[{"text":"ad","indices":[72,75]},{"text":"YUM","indices":[76,80]},{"text":"fries","indices":[81,87]},{"text":"Food","indices":[88,93]},{"text":"FoodFri","indices":[94,102]},{"text":"FoodieFriday","indices":[103,116]}],"symbols":[],"user_mentions":[{"screen_name":"beautyandbedlam","name":"Jen
|
79
|
+
Schmidt","id":17397651,"id_str":"17397651","indices":[20,36]}],"urls":[{"url":"https:\/\/t.co\/CSrnP9zbtS","expanded_url":"https:\/\/goo.gl\/4dvr88","display_url":"goo.gl\/4dvr88","indices":[48,71]}],"media":[{"id":794619343761969152,"id_str":"794619343761969152","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CwcOFUSWEAAFNlT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwcOFUSWEAAFNlT.jpg","url":"https:\/\/t.co\/6dtlZVnW9w","display_url":"pic.twitter.com\/6dtlZVnW9w","expanded_url":"https:\/\/twitter.com\/TheEyesofaBoy\/status\/794619397793075204\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":650,"h":433,"resize":"fit"},"large":{"w":650,"h":433,"resize":"fit"},"small":{"w":650,"h":433,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":794619343761969152,"id_str":"794619343761969152","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CwcOFUSWEAAFNlT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwcOFUSWEAAFNlT.jpg","url":"https:\/\/t.co\/6dtlZVnW9w","display_url":"pic.twitter.com\/6dtlZVnW9w","expanded_url":"https:\/\/twitter.com\/TheEyesofaBoy\/status\/794619397793075204\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":650,"h":433,"resize":"fit"},"large":{"w":650,"h":433,"resize":"fit"},"small":{"w":650,"h":433,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
80
|
+
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":1075440950,"id_str":"1075440950","name":"The
|
81
|
+
Eyes of a Boy","screen_name":"TheEyesofaBoy","location":"South Florida","description":"Lifestyle
|
82
|
+
family blogger in South Florida. Mom of 2 little boys. Social media addict.
|
83
|
+
Never met a beach I didn''t like, and lost 100 pounds last year!","url":"http:\/\/t.co\/yX9SPkUj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/yX9SPkUj","expanded_url":"http:\/\/www.theeyesofaboy.com","display_url":"theeyesofaboy.com","indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":6258,"friends_count":2370,"listed_count":968,"created_at":"Thu
|
84
|
+
Jan 10 02:16:03 +0000 2013","favourites_count":2167,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":42071,"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\/704883650559541248\/hP5CoXR5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/704883650559541248\/hP5CoXR5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1075440950\/1421262323","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":86,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":86,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun
|
85
|
+
Nov 06 04:39:55 +0000 2016","id":795123525229150208,"id_str":"795123525229150208","text":"RT
|
86
|
+
@Aussieunbaked: #Mango #cheesecake #Perth #party #weddingplanning #Australia
|
87
|
+
#food #foodnetwork #cake #dessert #yum #birthday #anniversa\u2026","truncated":false,"entities":{"hashtags":[{"text":"Mango","indices":[19,25]},{"text":"cheesecake","indices":[26,37]},{"text":"Perth","indices":[38,44]},{"text":"party","indices":[45,51]},{"text":"weddingplanning","indices":[52,68]},{"text":"Australia","indices":[69,79]},{"text":"food","indices":[80,85]},{"text":"foodnetwork","indices":[86,98]},{"text":"cake","indices":[99,104]},{"text":"dessert","indices":[105,113]},{"text":"yum","indices":[114,118]},{"text":"birthday","indices":[119,128]}],"symbols":[],"user_mentions":[{"screen_name":"Aussieunbaked","name":"The
|
88
|
+
Cheesecake Lady","id":3067192818,"id_str":"3067192818","indices":[3,17]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca
|
89
|
+
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":1255322456,"id_str":"1255322456","name":"Zuleyma
|
90
|
+
Posada","screen_name":"Zuley_Posada","location":"El Salvador","description":"Sonrisas
|
91
|
+
y sue\u00f1os.. #Love =] \u2665 COSTRUIRE I SOGNI DELLA MIA VITTA \u2665","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":117,"friends_count":147,"listed_count":14,"created_at":"Sat
|
92
|
+
Mar 09 20:35:40 +0000 2013","favourites_count":147,"utc_offset":-18000,"time_zone":"Central
|
93
|
+
Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":3860,"lang":"es","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\/660601331539775492\/vAWNKM92.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660601331539775492\/vAWNKM92.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/790727667641266176\/vQ6-PdO6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/790727667641266176\/vQ6-PdO6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1255322456\/1477358241","profile_link_color":"91D2FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","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,"retweeted_status":{"created_at":"Thu
|
94
|
+
Oct 27 12:19:26 +0000 2016","id":791615287258779649,"id_str":"791615287258779649","text":"#Mango
|
95
|
+
#cheesecake #Perth #party #weddingplanning #Australia #food #foodnetwork #cake
|
96
|
+
#dessert #yum #birthday\u2026 https:\/\/t.co\/B4g40aa2GB","truncated":true,"entities":{"hashtags":[{"text":"Mango","indices":[0,6]},{"text":"cheesecake","indices":[7,18]},{"text":"Perth","indices":[19,25]},{"text":"party","indices":[26,32]},{"text":"weddingplanning","indices":[33,49]},{"text":"Australia","indices":[50,60]},{"text":"food","indices":[61,66]},{"text":"foodnetwork","indices":[67,79]},{"text":"cake","indices":[80,85]},{"text":"dessert","indices":[86,94]},{"text":"yum","indices":[95,99]},{"text":"birthday","indices":[100,109]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/B4g40aa2GB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/791615287258779649","display_url":"twitter.com\/i\/web\/status\/7\u2026","indices":[111,134]}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca
|
97
|
+
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":3067192818,"id_str":"3067192818","name":"The
|
98
|
+
Cheesecake Lady","screen_name":"Aussieunbaked","location":"Kenwick WA 6107","description":"Are
|
99
|
+
Aussie cheesecakes baked or unbaked? What exactly is an Australian cheesecake?
|
100
|
+
What''s Australian flavour? Is that really an Australian recipe? PLEASE CHOOSE","url":"https:\/\/t.co\/YaYlT8Hqlk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YaYlT8Hqlk","expanded_url":"http:\/\/www.Cheesecakelady.com.au","display_url":"Cheesecakelady.com.au","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":8,"listed_count":1,"created_at":"Sat
|
101
|
+
Mar 07 23:26:40 +0000 2015","favourites_count":0,"utc_offset":25200,"time_zone":"Krasnoyarsk","geo_enabled":true,"verified":false,"statuses_count":21,"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\/574487684292304898\/T6WhEIjt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574487684292304898\/T6WhEIjt_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3067192818\/1425803484","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":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Sun
|
102
|
+
Nov 06 04:35:16 +0000 2016","id":795122351952265216,"id_str":"795122351952265216","text":"[OC]
|
103
|
+
Nepalese food: Bison MoMo with Achar (MoMo Sauce) [1632x 1224] #foodporn #food
|
104
|
+
#foodie #yummy #yum #foodgasm #\u2026 https:\/\/t.co\/k7hRnpfqUs","truncated":false,"entities":{"hashtags":[{"text":"foodporn","indices":[68,77]},{"text":"food","indices":[78,83]},{"text":"foodie","indices":[84,91]},{"text":"yummy","indices":[92,98]},{"text":"yum","indices":[99,103]},{"text":"foodgasm","indices":[104,113]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":795122350169714692,"id_str":"795122350169714692","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjXkJLW8AQI1J2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjXkJLW8AQI1J2.jpg","url":"https:\/\/t.co\/k7hRnpfqUs","display_url":"pic.twitter.com\/k7hRnpfqUs","expanded_url":"https:\/\/twitter.com\/cookingscarlet\/status\/795122351952265216\/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":795122350169714692,"id_str":"795122350169714692","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CwjXkJLW8AQI1J2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CwjXkJLW8AQI1J2.jpg","url":"https:\/\/t.co\/k7hRnpfqUs","display_url":"pic.twitter.com\/k7hRnpfqUs","expanded_url":"https:\/\/twitter.com\/cookingscarlet\/status\/795122351952265216\/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
|
+
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
|
+
Richardson","screen_name":"cookingscarlet","location":"New York, USA","description":"I
|
107
|
+
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":502,"friends_count":40,"listed_count":468,"created_at":"Wed
|
109
|
+
Aug 03 21:30:11 +0000 2016","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33378,"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":"Sun
|
110
|
+
Nov 06 04:27:30 +0000 2016","id":795120398237110272,"id_str":"795120398237110272","text":"DONUT!!!!!
|
111
|
+
\ud83c\udf69 \nBeen waiting for this guy all day long. YUMMMMMM. \n\n#food
|
112
|
+
#foodporn #yum #yummy\u2026 https:\/\/t.co\/i4O0b3U1U1","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[66,71]},{"text":"foodporn","indices":[72,81]},{"text":"yum","indices":[82,86]},{"text":"yummy","indices":[87,93]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/i4O0b3U1U1","expanded_url":"https:\/\/www.instagram.com\/p\/BMdIwgDg0pQ\/","display_url":"instagram.com\/p\/BMdIwgDg0pQ\/","indices":[95,118]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
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
|
70
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''
|
71
143
|
retweet bot! Follow me and @quantomworks with hashtags #food and #foodporn
|
72
|
-
for increased retweet chance!! Happy noming!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":
|
73
|
-
Aug 25 12:12:20 +0000 2016","favourites_count":
|
74
|
-
|
75
|
-
|
76
|
-
#
|
77
|
-
href=\"http:\/\/
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
@altfoodguy: A bunch of pan #friedchicken for the fam. #scddiet #scdlegal
|
86
|
-
#food #foodporn #yum #instaf\u2026 https:\/\/t.co\/oPaenqxjcn https:\/\u2026","truncated":false,"entities":{"hashtags":[{"text":"friedchicken","indices":[31,44]},{"text":"scddiet","indices":[59,67]},{"text":"scdlegal","indices":[68,77]},{"text":"food","indices":[78,83]},{"text":"foodporn","indices":[84,93]},{"text":"yum","indices":[94,98]},{"text":"instaf","indices":[99,106]}],"symbols":[],"user_mentions":[{"screen_name":"altfoodguy","name":"Guy","id":3797599762,"id_str":"3797599762","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/oPaenqxjcn","expanded_url":"http:\/\/bit.ly\/2dJTjgs","display_url":"bit.ly\/2dJTjgs","indices":[108,131]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
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
|
149
|
+
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
|
+
Richardson","screen_name":"cookingscarlet","location":"New York, USA","description":"I
|
151
|
+
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":502,"friends_count":40,"listed_count":468,"created_at":"Wed
|
153
|
+
Aug 03 21:30:11 +0000 2016","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33378,"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":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,"lang":"en"},{"created_at":"Sun
|
154
|
+
Nov 06 04:13:43 +0000 2016","id":795116928708788224,"id_str":"795116928708788224","text":"RT
|
155
|
+
@magglepie: #Vegan Stir fry https:\/\/t.co\/YRsodnk4PU #blog #food #yum","truncated":false,"entities":{"hashtags":[{"text":"Vegan","indices":[15,21]},{"text":"blog","indices":[56,61]},{"text":"food","indices":[62,67]},{"text":"yum","indices":[68,72]}],"symbols":[],"user_mentions":[{"screen_name":"magglepie","name":"Maggie
|
156
|
+
Stewart","id":19619093,"id_str":"19619093","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/YRsodnk4PU","expanded_url":"http:\/\/theveganslife.blogspot.com\/2015\/08\/stir-fry.html","display_url":"theveganslife.blogspot.com\/2015\/08\/stir-f\u2026","indices":[31,54]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
87
157
|
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''
|
88
158
|
retweet bot! Follow me and @quantomworks with hashtags #food and #foodporn
|
89
|
-
for increased retweet chance!! Happy noming!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":
|
90
|
-
Aug 25 12:12:20 +0000 2016","favourites_count":
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
Time (US & Canada)","geo_enabled":
|
99
|
-
|
100
|
-
@
|
101
|
-
#yummy #
|
102
|
-
|
159
|
+
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
|
160
|
+
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
|
161
|
+
Nov 06 04:05:00 +0000 2016","id":795114736618795012,"id_str":"795114736618795012","text":"#Vegan
|
162
|
+
Stir fry https:\/\/t.co\/YRsodnk4PU #blog #food #yum","truncated":false,"entities":{"hashtags":[{"text":"Vegan","indices":[0,6]},{"text":"blog","indices":[41,46]},{"text":"food","indices":[47,52]},{"text":"yum","indices":[53,57]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YRsodnk4PU","expanded_url":"http:\/\/theveganslife.blogspot.com\/2015\/08\/stir-fry.html","display_url":"theveganslife.blogspot.com\/2015\/08\/stir-f\u2026","indices":[16,39]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
163
|
+
href=\"http:\/\/www.tweetjukebox.com\" rel=\"nofollow\"\u003eTweet Jukebox\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":19619093,"id_str":"19619093","name":"Maggie
|
164
|
+
Stewart","screen_name":"magglepie","location":"Moorhead, MN","description":"knitter.
|
165
|
+
crocheter. consumer of vegan food. blogger. reader. nerd. allergic to hate. i
|
166
|
+
love almond milk. i''m awesome and you know it. YL Member #1018657","url":"https:\/\/t.co\/rsvBGHXjrc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rsvBGHXjrc","expanded_url":"https:\/\/www.etsy.com\/shop\/lacartapapier","display_url":"etsy.com\/shop\/lacartapa\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2808,"friends_count":2469,"listed_count":824,"created_at":"Tue
|
167
|
+
Jan 27 21:50:22 +0000 2009","favourites_count":2064,"utc_offset":-21600,"time_zone":"Mountain
|
168
|
+
Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":107173,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581516896924610560\/psYPaCpP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581516896924610560\/psYPaCpP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19619093\/1399486464","profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","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":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
|
169
|
+
Nov 06 04:13:35 +0000 2016","id":795116895825432576,"id_str":"795116895825432576","text":"RT
|
170
|
+
@nidhify: One happy meal. Anyone?\n#Instafood #instapic #chinese #nom #yum
|
171
|
+
#yummy #food #foodporn #foodie\u2026 https:\/\/t.co\/srqso2pEtB","truncated":false,"entities":{"hashtags":[{"text":"Instafood","indices":[37,47]},{"text":"instapic","indices":[48,57]},{"text":"chinese","indices":[58,66]},{"text":"nom","indices":[67,71]},{"text":"yum","indices":[72,76]},{"text":"yummy","indices":[77,83]},{"text":"food","indices":[84,89]},{"text":"foodporn","indices":[90,99]},{"text":"foodie","indices":[100,107]}],"symbols":[],"user_mentions":[{"screen_name":"nidhify","name":"Nidhi
|
172
|
+
Sharma","id":62732311,"id_str":"62732311","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/srqso2pEtB","expanded_url":"https:\/\/www.instagram.com\/p\/BMdFxFPjYxB\/","display_url":"instagram.com\/p\/BMdFxFPjYxB\/","indices":[109,132]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
103
173
|
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''
|
104
174
|
retweet bot! Follow me and @quantomworks with hashtags #food and #foodporn
|
105
|
-
for increased retweet chance!! Happy noming!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":
|
106
|
-
Aug 25 12:12:20 +0000 2016","favourites_count":
|
107
|
-
|
108
|
-
|
109
|
-
#
|
110
|
-
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":
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
175
|
+
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
|
176
|
+
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
|
177
|
+
Nov 06 04:01:22 +0000 2016","id":795113820893093889,"id_str":"795113820893093889","text":"One
|
178
|
+
happy meal. Anyone?\n#Instafood #instapic #chinese #nom #yum #yummy #food
|
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
|
189
|
+
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
|
+
Richardson","screen_name":"cookingscarlet","location":"New York, USA","description":"I
|
191
|
+
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":502,"friends_count":40,"listed_count":468,"created_at":"Wed
|
193
|
+
Aug 03 21:30:11 +0000 2016","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33378,"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":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun
|
194
|
+
Nov 06 04:05:00 +0000 2016","id":795114736618795012,"id_str":"795114736618795012","text":"#Vegan
|
195
|
+
Stir fry https:\/\/t.co\/YRsodnk4PU #blog #food #yum","truncated":false,"entities":{"hashtags":[{"text":"Vegan","indices":[0,6]},{"text":"blog","indices":[41,46]},{"text":"food","indices":[47,52]},{"text":"yum","indices":[53,57]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YRsodnk4PU","expanded_url":"http:\/\/theveganslife.blogspot.com\/2015\/08\/stir-fry.html","display_url":"theveganslife.blogspot.com\/2015\/08\/stir-f\u2026","indices":[16,39]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
196
|
+
href=\"http:\/\/www.tweetjukebox.com\" rel=\"nofollow\"\u003eTweet Jukebox\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":19619093,"id_str":"19619093","name":"Maggie
|
197
|
+
Stewart","screen_name":"magglepie","location":"Moorhead, MN","description":"knitter.
|
198
|
+
crocheter. consumer of vegan food. blogger. reader. nerd. allergic to hate. i
|
199
|
+
love almond milk. i''m awesome and you know it. YL Member #1018657","url":"https:\/\/t.co\/rsvBGHXjrc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rsvBGHXjrc","expanded_url":"https:\/\/www.etsy.com\/shop\/lacartapapier","display_url":"etsy.com\/shop\/lacartapa\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2808,"friends_count":2469,"listed_count":824,"created_at":"Tue
|
200
|
+
Jan 27 21:50:22 +0000 2009","favourites_count":2064,"utc_offset":-21600,"time_zone":"Mountain
|
201
|
+
Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":107173,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581516896924610560\/psYPaCpP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581516896924610560\/psYPaCpP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19619093\/1399486464","profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","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":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun
|
202
|
+
Nov 06 04:01:22 +0000 2016","id":795113820893093889,"id_str":"795113820893093889","text":"One
|
203
|
+
happy meal. Anyone?\n#Instafood #instapic #chinese #nom #yum #yummy #food
|
204
|
+
#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
|
205
|
+
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
|
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
|
120
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''
|
121
235
|
retweet bot! Follow me and @quantomworks with hashtags #food and #foodporn
|
122
|
-
for increased retweet chance!! Happy noming!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":
|
123
|
-
Aug 25 12:12:20 +0000 2016","favourites_count":
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
#
|
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
|
240
|
+
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":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3758229503,"id_str":"3758229503","name":"Garlicked","screen_name":"Garlicked1","location":"Missouri,
|
242
|
+
USA","description":"Food and restaurant blogger.","url":"https:\/\/t.co\/aKxMjesReW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/aKxMjesReW","expanded_url":"http:\/\/www.garlicked.com\/","display_url":"garlicked.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":47,"listed_count":4,"created_at":"Thu
|
243
|
+
Sep 24 08:22:51 +0000 2015","favourites_count":33,"utc_offset":-25200,"time_zone":"Pacific
|
244
|
+
Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":63,"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\/785111363257376768\/zySHm12J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785111363257376768\/zySHm12J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3758229503\/1476020235","profile_link_color":"1B95E0","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,"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
|
245
|
+
Nov 06 03:55:53 +0000 2016","id":795112442334445568,"id_str":"795112442334445568","text":"RT
|
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
|
133
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''
|
134
252
|
retweet bot! Follow me and @quantomworks with hashtags #food and #foodporn
|
135
|
-
for increased retweet chance!! Happy noming!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":
|
136
|
-
Aug 25 12:12:20 +0000 2016","favourites_count":
|
137
|
-
|
138
|
-
|
139
|
-
https:\/\/t.co\/
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
you so much micah_lonelyuae for the fabulous treat!!! Tsup!!! #food #foodporn
|
158
|
-
#yum\u2026 https:\/\/t.co\/U4yFcwQ3aY","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[68,73]},{"text":"foodporn","indices":[74,83]},{"text":"yum","indices":[84,88]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/U4yFcwQ3aY","expanded_url":"https:\/\/www.instagram.com\/p\/BMBtHOIjJWR\/","display_url":"instagram.com\/p\/BMBtHOIjJWR\/","indices":[90,113]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
159
|
-
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":124217370,"id_str":"124217370","name":"Kansas
|
160
|
-
Walters","screen_name":"nurse_hatsumi","location":"Abu Dhabi, U.A.E.","description":"I''m
|
161
|
-
not a GIRL, not yet a WOMAN \ud83d\ude1c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":251,"friends_count":595,"listed_count":76,"created_at":"Thu
|
162
|
-
Mar 18 17:05:23 +0000 2010","favourites_count":44,"utc_offset":14400,"time_zone":"Abu
|
163
|
-
Dhabi","geo_enabled":true,"verified":false,"statuses_count":3477,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"AB0023","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/680241123\/5eda6476e94c6b6850587426c7ea16e7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/680241123\/5eda6476e94c6b6850587426c7ea16e7.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/786590701089939456\/D5V2GtZL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/786590701089939456\/D5V2GtZL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/124217370\/1476371965","profile_link_color":"72E7D7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FBFFD7","profile_text_color":"EC012A","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":[24.46496851,54.32867262]},"coordinates":{"type":"Point","coordinates":[54.32867262,24.46496851]},"place":{"id":"00f24ae701a1207b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00f24ae701a1207b.json","place_type":"admin","name":"Abu
|
164
|
-
Dhabi","full_name":"Abu Dhabi, United Arab Emirates","country_code":"AE","country":"United
|
165
|
-
Arab Emirates","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[51.2938738,22.6261387],[56.0175464,22.6261387],[56.0175464,25.1639588],[51.2938738,25.1639588]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed
|
166
|
-
Oct 26 12:46:03 +0000 2016","id":791259598669971456,"id_str":"791259598669971456","text":"A
|
167
|
-
bunch of pan #friedchicken for the fam. #scddiet #scdlegal #food #foodporn
|
168
|
-
#yum #instaf\u2026 https:\/\/t.co\/oPaenqxjcn https:\/\/t.co\/dRqqDvVOvY","truncated":false,"entities":{"hashtags":[{"text":"friedchicken","indices":[15,28]},{"text":"scddiet","indices":[43,51]},{"text":"scdlegal","indices":[52,61]},{"text":"food","indices":[62,67]},{"text":"foodporn","indices":[68,77]},{"text":"yum","indices":[78,82]},{"text":"instaf","indices":[83,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oPaenqxjcn","expanded_url":"http:\/\/bit.ly\/2dJTjgs","display_url":"bit.ly\/2dJTjgs","indices":[92,115]}],"media":[{"id":791259595998130176,"id_str":"791259595998130176","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CvseaQiWcAAn1TG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CvseaQiWcAAn1TG.jpg","url":"https:\/\/t.co\/dRqqDvVOvY","display_url":"pic.twitter.com\/dRqqDvVOvY","expanded_url":"https:\/\/twitter.com\/altfoodguy\/status\/791259598669971456\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1024,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":791259595998130176,"id_str":"791259595998130176","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CvseaQiWcAAn1TG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CvseaQiWcAAn1TG.jpg","url":"https:\/\/t.co\/dRqqDvVOvY","display_url":"pic.twitter.com\/dRqqDvVOvY","expanded_url":"https:\/\/twitter.com\/altfoodguy\/status\/791259598669971456\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1024,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
169
|
-
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":3797599762,"id_str":"3797599762","name":"Guy","screen_name":"altfoodguy","location":"NY\/NJ,
|
170
|
-
USA","description":"Just a guy trying to learn to make food an alternative
|
171
|
-
way to improve health","url":"https:\/\/t.co\/1PPcqDHkCs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1PPcqDHkCs","expanded_url":"https:\/\/instagram.com\/altfoodguy","display_url":"instagram.com\/altfoodguy","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":62,"listed_count":7,"created_at":"Sun
|
172
|
-
Sep 27 23:00:23 +0000 2015","favourites_count":0,"utc_offset":-14400,"time_zone":"Eastern
|
173
|
-
Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":588,"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\/648279135748395012\/kP5FVMNM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648279135748395012\/kP5FVMNM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3797599762\/1443399288","profile_link_color":"4A913C","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":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed
|
174
|
-
Oct 26 12:45:24 +0000 2016","id":791259434370510848,"id_str":"791259434370510848","text":"RT
|
175
|
-
@EDevenuti: i got this fantastic #puntarelle\n\n#food #foodporn #yum #instafood
|
176
|
-
#yummy #amazing #instagood\u2026 https:\/\/t.co\/UfoxkusXqh","truncated":false,"entities":{"hashtags":[{"text":"puntarelle","indices":[36,47]},{"text":"food","indices":[49,54]},{"text":"foodporn","indices":[55,64]},{"text":"yum","indices":[65,69]},{"text":"instafood","indices":[70,80]},{"text":"yummy","indices":[81,87]},{"text":"amazing","indices":[88,96]},{"text":"instagood","indices":[97,107]}],"symbols":[],"user_mentions":[{"screen_name":"EDevenuti","name":"Emiliano
|
177
|
-
De Venuti","id":439993746,"id_str":"439993746","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/UfoxkusXqh","expanded_url":"https:\/\/www.instagram.com\/p\/BMBs3cABxD6\/","display_url":"instagram.com\/p\/BMBs3cABxD6\/","indices":[109,132]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
178
|
-
href=\"http:\/\/www.kitchenwizardsunite.com\" rel=\"nofollow\"\u003eRetweet
|
179
|
-
kitchen\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":779402077524996096,"id_str":"779402077524996096","name":"GB
|
180
|
-
Walls","screen_name":"GbWalls","location":"California, USA","description":"Kitchen
|
181
|
-
Wizards Unite!","url":"https:\/\/t.co\/RtjX8gJB5i","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RtjX8gJB5i","expanded_url":"http:\/\/www.kitchenwizardsunite.com","display_url":"kitchenwizardsunite.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1169,"friends_count":44,"listed_count":139,"created_at":"Fri
|
182
|
-
Sep 23 19:28:30 +0000 2016","favourites_count":3,"utc_offset":-25200,"time_zone":"Pacific
|
183
|
-
Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":3931,"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\/779849851374751745\/5LE6JS38_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/779849851374751745\/5LE6JS38_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/779402077524996096\/1474661626","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":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":"Wed
|
184
|
-
Oct 26 12:44:17 +0000 2016","id":791259154031579136,"id_str":"791259154031579136","text":"i
|
185
|
-
got this fantastic #puntarelle\n\n#food #foodporn #yum #instafood #yummy #amazing
|
186
|
-
#instagood\u2026 https:\/\/t.co\/UfoxkusXqh","truncated":false,"entities":{"hashtags":[{"text":"puntarelle","indices":[21,32]},{"text":"food","indices":[34,39]},{"text":"foodporn","indices":[40,49]},{"text":"yum","indices":[50,54]},{"text":"instafood","indices":[55,65]},{"text":"yummy","indices":[66,72]},{"text":"amazing","indices":[73,81]},{"text":"instagood","indices":[82,92]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UfoxkusXqh","expanded_url":"https:\/\/www.instagram.com\/p\/BMBs3cABxD6\/","display_url":"instagram.com\/p\/BMBs3cABxD6\/","indices":[94,117]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
187
|
-
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":439993746,"id_str":"439993746","name":"Emiliano
|
188
|
-
De Venuti","screen_name":"EDevenuti","location":"Ceo&Founder @Vin\u00f3forum
|
189
|
-
","description":"Ceo@Vinoforum\/\/Specialist in #communication #marketing
|
190
|
-
#socialmediastrategy #eventplanningbusiness #love #happiness #resilience #wine
|
191
|
-
#food","url":"https:\/\/t.co\/eqccXACZ43","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eqccXACZ43","expanded_url":"http:\/\/www.emilianodevenuti.it","display_url":"emilianodevenuti.it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":385,"friends_count":738,"listed_count":33,"created_at":"Sun
|
192
|
-
Dec 18 12:50:10 +0000 2011","favourites_count":310,"utc_offset":7200,"time_zone":"Budapest","geo_enabled":true,"verified":false,"statuses_count":1019,"lang":"it","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/801878138\/a9ccacca93ebcb6cf224785856bfc911.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/801878138\/a9ccacca93ebcb6cf224785856bfc911.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/698219991670374401\/KaGysSRq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/698219991670374401\/KaGysSRq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/439993746\/1445639710","profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","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":{"type":"Point","coordinates":[41.90657273,12.46877952]},"coordinates":{"type":"Point","coordinates":[12.46877952,41.90657273]},"place":{"id":"7d588036fe12e124","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7d588036fe12e124.json","place_type":"city","name":"Rome","full_name":"Rome,
|
193
|
-
Lazio","country_code":"IT","country":"Italy","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[12.2344266,41.6558738],[12.8558641,41.6558738],[12.8558641,42.140959],[12.2344266,42.140959]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed
|
194
|
-
Oct 26 12:44:17 +0000 2016","id":791259154031579136,"id_str":"791259154031579136","text":"i
|
195
|
-
got this fantastic #puntarelle\n\n#food #foodporn #yum #instafood #yummy #amazing
|
196
|
-
#instagood\u2026 https:\/\/t.co\/UfoxkusXqh","truncated":false,"entities":{"hashtags":[{"text":"puntarelle","indices":[21,32]},{"text":"food","indices":[34,39]},{"text":"foodporn","indices":[40,49]},{"text":"yum","indices":[50,54]},{"text":"instafood","indices":[55,65]},{"text":"yummy","indices":[66,72]},{"text":"amazing","indices":[73,81]},{"text":"instagood","indices":[82,92]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UfoxkusXqh","expanded_url":"https:\/\/www.instagram.com\/p\/BMBs3cABxD6\/","display_url":"instagram.com\/p\/BMBs3cABxD6\/","indices":[94,117]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
197
|
-
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":439993746,"id_str":"439993746","name":"Emiliano
|
198
|
-
De Venuti","screen_name":"EDevenuti","location":"Ceo&Founder @Vin\u00f3forum
|
199
|
-
","description":"Ceo@Vinoforum\/\/Specialist in #communication #marketing
|
200
|
-
#socialmediastrategy #eventplanningbusiness #love #happiness #resilience #wine
|
201
|
-
#food","url":"https:\/\/t.co\/eqccXACZ43","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eqccXACZ43","expanded_url":"http:\/\/www.emilianodevenuti.it","display_url":"emilianodevenuti.it","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":385,"friends_count":738,"listed_count":33,"created_at":"Sun
|
202
|
-
Dec 18 12:50:10 +0000 2011","favourites_count":310,"utc_offset":7200,"time_zone":"Budapest","geo_enabled":true,"verified":false,"statuses_count":1019,"lang":"it","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/801878138\/a9ccacca93ebcb6cf224785856bfc911.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/801878138\/a9ccacca93ebcb6cf224785856bfc911.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/698219991670374401\/KaGysSRq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/698219991670374401\/KaGysSRq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/439993746\/1445639710","profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","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":{"type":"Point","coordinates":[41.90657273,12.46877952]},"coordinates":{"type":"Point","coordinates":[12.46877952,41.90657273]},"place":{"id":"7d588036fe12e124","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7d588036fe12e124.json","place_type":"city","name":"Rome","full_name":"Rome,
|
203
|
-
Lazio","country_code":"IT","country":"Italy","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[12.2344266,41.6558738],[12.8558641,41.6558738],[12.8558641,42.140959],[12.2344266,42.140959]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed
|
204
|
-
Oct 26 12:40:34 +0000 2016","id":791258216466440192,"id_str":"791258216466440192","text":"#food
|
205
|
-
#yum #healthy #fashion #style #stylish #love #beautiful #diet #health #weightloss
|
206
|
-
https:\/\/t.co\/2AUBD6yVlh","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[0,5]},{"text":"yum","indices":[6,10]},{"text":"healthy","indices":[11,19]},{"text":"fashion","indices":[20,28]},{"text":"style","indices":[29,35]},{"text":"stylish","indices":[36,44]},{"text":"love","indices":[45,50]},{"text":"beautiful","indices":[51,61]},{"text":"diet","indices":[62,67]},{"text":"health","indices":[68,75]},{"text":"weightloss","indices":[76,87]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":791258213480095744,"id_str":"791258213480095744","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CvsdJyQXYAAV5Jk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CvsdJyQXYAAV5Jk.jpg","url":"https:\/\/t.co\/2AUBD6yVlh","display_url":"pic.twitter.com\/2AUBD6yVlh","expanded_url":"https:\/\/twitter.com\/HowNWays\/status\/791258216466440192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":791258213480095744,"id_str":"791258213480095744","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CvsdJyQXYAAV5Jk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CvsdJyQXYAAV5Jk.jpg","url":"https:\/\/t.co\/2AUBD6yVlh","display_url":"pic.twitter.com\/2AUBD6yVlh","expanded_url":"https:\/\/twitter.com\/HowNWays\/status\/791258216466440192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca
|
207
|
-
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":745607709597241344,"id_str":"745607709597241344","name":"How
|
208
|
-
& Ways","screen_name":"HowNWays","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":93,"listed_count":80,"created_at":"Wed
|
209
|
-
Jun 22 13:21:45 +0000 2016","favourites_count":0,"utc_offset":-25200,"time_zone":"Pacific
|
210
|
-
Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":3994,"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\/746644538035417088\/tWxz6kc0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/746644538035417088\/tWxz6kc0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/745607709597241344\/1466848894","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":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":"Wed
|
211
|
-
Oct 26 12:38:36 +0000 2016","id":791257720179585024,"id_str":"791257720179585024","text":"I''m
|
212
|
-
at Temple! #food #foodporn #yum #instafood #TagsForLikes #yummy #amazing #instagood
|
213
|
-
#photooftheday #sweet #dinn\u2026 https:\/\/t.co\/OIa4Uk7kld","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[15,20]},{"text":"foodporn","indices":[21,30]},{"text":"yum","indices":[31,35]},{"text":"instafood","indices":[36,46]},{"text":"TagsForLikes","indices":[47,60]},{"text":"yummy","indices":[61,67]},{"text":"amazing","indices":[68,76]},{"text":"instagood","indices":[77,87]},{"text":"photooftheday","indices":[88,102]},{"text":"sweet","indices":[103,109]},{"text":"dinn","indices":[110,115]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":791257717461712896,"id_str":"791257717461712896","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/Cvscs6cXgAAClOb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Cvscs6cXgAAClOb.jpg","url":"https:\/\/t.co\/OIa4Uk7kld","display_url":"pic.twitter.com\/OIa4Uk7kld","expanded_url":"https:\/\/twitter.com\/magnifyk\/status\/791257720179585024\/photo\/1","type":"photo","sizes":{"medium":{"w":640,"h":440,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":440,"resize":"fit"},"large":{"w":640,"h":440,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":791257717461712896,"id_str":"791257717461712896","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/Cvscs6cXgAAClOb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Cvscs6cXgAAClOb.jpg","url":"https:\/\/t.co\/OIa4Uk7kld","display_url":"pic.twitter.com\/OIa4Uk7kld","expanded_url":"https:\/\/twitter.com\/magnifyk\/status\/791257720179585024\/photo\/1","type":"photo","sizes":{"medium":{"w":640,"h":440,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":440,"resize":"fit"},"large":{"w":640,"h":440,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
214
|
-
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":39584114,"id_str":"39584114","name":"MAGNIFYK","screen_name":"magnifyk","location":"Paris
|
215
|
-
in france","description":"Managements -Events -Services-promotions","url":"http:\/\/t.co\/gYVfylkehI","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/gYVfylkehI","expanded_url":"http:\/\/about.me\/magnifyk","display_url":"about.me\/magnifyk","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":31937,"friends_count":32014,"listed_count":854,"created_at":"Tue
|
216
|
-
May 12 20:12:25 +0000 2009","favourites_count":37580,"utc_offset":7200,"time_zone":"Paris","geo_enabled":true,"verified":false,"statuses_count":448587,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/12614805\/wishesbymysonludoandme.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/12614805\/wishesbymysonludoandme.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427750582\/banner_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427750582\/banner_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39584114\/1398267962","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","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":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed
|
217
|
-
Oct 26 12:36:32 +0000 2016","id":791257200203268096,"id_str":"791257200203268096","text":"Good
|
218
|
-
food #food #foodporn #yum #instafood #TagsForLikes #yummy #amazing #instagood\u2026
|
219
|
-
https:\/\/t.co\/oS1BqMzaL2","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[10,15]},{"text":"foodporn","indices":[16,25]},{"text":"yum","indices":[26,30]},{"text":"instafood","indices":[31,41]},{"text":"TagsForLikes","indices":[42,55]},{"text":"yummy","indices":[56,62]},{"text":"amazing","indices":[63,71]},{"text":"instagood","indices":[72,82]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oS1BqMzaL2","expanded_url":"https:\/\/www.instagram.com\/p\/BMBr-qlj1Dv\/","display_url":"instagram.com\/p\/BMBr-qlj1Dv\/","indices":[84,107]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
220
|
-
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":239729719,"id_str":"239729719","name":"Goragot_Hao","screen_name":"GoragotHao","location":"Samre,
|
221
|
-
Bangkok","description":"Instagram\/ snapchat\/shots- @goragot_hao twitter-
|
222
|
-
@goragothao BKK Thailand","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":85,"friends_count":83,"listed_count":5,"created_at":"Tue
|
223
|
-
Jan 18 08:50:40 +0000 2011","favourites_count":98,"utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"verified":false,"statuses_count":1916,"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\/533487085512953856\/vYO0T08J_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/533487085512953856\/vYO0T08J_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/239729719\/1391526694","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":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":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed
|
224
|
-
Oct 26 12:33:14 +0000 2016","id":791256373707157505,"id_str":"791256373707157505","text":"Roasted
|
225
|
-
Chicken from the other night! #pollo #yum #chicken #food #goodmorning https:\/\/t.co\/xWlMlh17Jv","truncated":false,"entities":{"hashtags":[{"text":"pollo","indices":[38,44]},{"text":"yum","indices":[45,49]},{"text":"chicken","indices":[50,58]},{"text":"food","indices":[59,64]},{"text":"goodmorning","indices":[65,77]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xWlMlh17Jv","expanded_url":"https:\/\/www.instagram.com\/p\/BMBrmhghn02\/","display_url":"instagram.com\/p\/BMBrmhghn02\/","indices":[78,101]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
226
|
-
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":258048137,"id_str":"258048137","name":"ElCostaChica","screen_name":"Immagic_blkquee","location":"New
|
227
|
-
York","description":"God, Family, Food, Books, Boxing, Fashion and Makeup!
|
228
|
-
#InThatOrder","url":"http:\/\/t.co\/H9c3CKblQ5","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/H9c3CKblQ5","expanded_url":"http:\/\/www.whoatemyplate.wordpress.com","display_url":"whoatemyplate.wordpress.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":174,"friends_count":426,"listed_count":8,"created_at":"Sat
|
229
|
-
Feb 26 21:09:59 +0000 2011","favourites_count":395,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4505,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E3AF81","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/672608262\/c3069e4d41ea1dcfd6b03403a1d428d6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/672608262\/c3069e4d41ea1dcfd6b03403a1d428d6.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/465996347708305408\/4ZfncyXe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/465996347708305408\/4ZfncyXe_normal.jpeg","profile_link_color":"D39775","profile_sidebar_border_color":"03515C","profile_sidebar_fill_color":"731038","profile_text_color":"8C5F64","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":"en"}],"search_metadata":{"completed_in":0.037,"max_id":791260516731813888,"max_id_str":"791260516731813888","next_results":"?max_id=791256373707157504&q=%23food%20%23yum&include_entities=1","query":"%23food+%23yum","refresh_url":"?since_id=791260516731813888&q=%23food%20%23yum&include_entities=1","count":15,"since_id":0,"since_id_str":"0"}}'
|
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"}}'
|
230
275
|
http_version:
|
231
|
-
recorded_at:
|
276
|
+
recorded_at: Sun, 06 Nov 2016 05:03:44 GMT
|
232
277
|
recorded_with: VCR 3.0.3
|