tweetsearch 0.1.0
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 +7 -0
- data/.env-example +5 -0
- data/.gitignore +9 -0
- data/.rubocop.yml +11 -0
- data/.travis.yml +7 -0
- data/Gemfile +26 -0
- data/Gemfile.lock +84 -0
- data/LICENSE +21 -0
- data/README.md +25 -0
- data/Rakefile +47 -0
- data/bin/tweetsearch +14 -0
- data/lib/tweetsearch.rb +4 -0
- data/lib/tweetsearch/tweet.rb +17 -0
- data/lib/tweetsearch/twitter_client.rb +27 -0
- data/lib/tweetsearch/version.rb +5 -0
- data/spec/spec_helper.rb +32 -0
- data/spec/support/cassettes/tweet_spec_should_return_Tweets_that_contain_specific_hashtags.yml +232 -0
- data/spec/support/cassettes/twitter_client_spec_should_return_Tweets_that_contain_specific_hashtags.yml +232 -0
- data/spec/tweetsearch/tweet_spec.rb +19 -0
- data/spec/tweetsearch/twitter_client_spec.rb +18 -0
- data/tweetsearch.gemspec +35 -0
- metadata +238 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3fd636d902884424da5e954439b9bbcb278fb183
|
4
|
+
data.tar.gz: 0f3377dd58a04c8699ce9d70ec7e70fdf4228143
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 27cdb50a69425c2e552f38e0eea361186ff50b61db2351c5515402b2585aa550caeac5fffe060d042d544493a3b606428ebb4e78fa18e75dd46432f0bc82990e
|
7
|
+
data.tar.gz: ba4eaf8ef7e385ef8abf294247a65e467478a9bdefe0a6360ea20707225bbbd6e1e878f3f8fa16462c448180ab35958f246d9d7f15eb97a16a80595d777e79f4
|
data/.env-example
ADDED
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
ruby '2.3.1'
|
3
|
+
|
4
|
+
source 'https://rubygems.org'
|
5
|
+
|
6
|
+
gemspec
|
7
|
+
=begin
|
8
|
+
gem 'dotenv'
|
9
|
+
|
10
|
+
gem 'flay'
|
11
|
+
gem 'flog'
|
12
|
+
|
13
|
+
gem 'httparty'
|
14
|
+
|
15
|
+
gem 'minitest'
|
16
|
+
gem 'minitest-rg'
|
17
|
+
|
18
|
+
gem 'rake'
|
19
|
+
gem 'rubocop'
|
20
|
+
|
21
|
+
gem 'simplecov'
|
22
|
+
|
23
|
+
gem 'vcr'
|
24
|
+
|
25
|
+
gem 'webmock'
|
26
|
+
=end
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
tweetsearch (0.1.0)
|
5
|
+
httparty (~> 0.14)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
addressable (2.4.0)
|
11
|
+
ast (2.3.0)
|
12
|
+
crack (0.4.3)
|
13
|
+
safe_yaml (~> 1.0.0)
|
14
|
+
docile (1.1.5)
|
15
|
+
dotenv (2.1.1)
|
16
|
+
erubis (2.7.0)
|
17
|
+
flay (2.8.1)
|
18
|
+
erubis (~> 2.7.0)
|
19
|
+
path_expander (~> 1.0)
|
20
|
+
ruby_parser (~> 3.0)
|
21
|
+
sexp_processor (~> 4.0)
|
22
|
+
flog (4.4.0)
|
23
|
+
path_expander (~> 1.0)
|
24
|
+
ruby_parser (~> 3.1, > 3.1.0)
|
25
|
+
sexp_processor (~> 4.4)
|
26
|
+
hashdiff (0.3.0)
|
27
|
+
httparty (0.14.0)
|
28
|
+
multi_xml (>= 0.5.2)
|
29
|
+
json (2.0.2)
|
30
|
+
minitest (5.9.1)
|
31
|
+
minitest-rg (5.2.0)
|
32
|
+
minitest (~> 5.0)
|
33
|
+
multi_xml (0.5.5)
|
34
|
+
parser (2.3.1.4)
|
35
|
+
ast (~> 2.2)
|
36
|
+
path_expander (1.0.0)
|
37
|
+
powerpack (0.1.1)
|
38
|
+
rainbow (2.1.0)
|
39
|
+
rake (11.3.0)
|
40
|
+
rubocop (0.44.1)
|
41
|
+
parser (>= 2.3.1.1, < 3.0)
|
42
|
+
powerpack (~> 0.1)
|
43
|
+
rainbow (>= 1.99.1, < 3.0)
|
44
|
+
ruby-progressbar (~> 1.7)
|
45
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
46
|
+
ruby-progressbar (1.8.1)
|
47
|
+
ruby_parser (3.8.3)
|
48
|
+
sexp_processor (~> 4.1)
|
49
|
+
safe_yaml (1.0.4)
|
50
|
+
sexp_processor (4.7.0)
|
51
|
+
simplecov (0.12.0)
|
52
|
+
docile (~> 1.1.0)
|
53
|
+
json (>= 1.8, < 3)
|
54
|
+
simplecov-html (~> 0.10.0)
|
55
|
+
simplecov-html (0.10.0)
|
56
|
+
unicode-display_width (1.1.1)
|
57
|
+
vcr (3.0.3)
|
58
|
+
webmock (2.1.0)
|
59
|
+
addressable (>= 2.3.6)
|
60
|
+
crack (>= 0.3.2)
|
61
|
+
hashdiff
|
62
|
+
|
63
|
+
PLATFORMS
|
64
|
+
ruby
|
65
|
+
|
66
|
+
DEPENDENCIES
|
67
|
+
dotenv (~> 2.1)
|
68
|
+
flay (~> 2.8)
|
69
|
+
flog (~> 4.4)
|
70
|
+
httparty (~> 0.14)
|
71
|
+
minitest (~> 5.9)
|
72
|
+
minitest-rg (~> 5.2)
|
73
|
+
rake (~> 11.3)
|
74
|
+
rubocop (~> 0.42)
|
75
|
+
simplecov (~> 0.12)
|
76
|
+
tweetsearch!
|
77
|
+
vcr (~> 3.0)
|
78
|
+
webmock (~> 2.1)
|
79
|
+
|
80
|
+
RUBY VERSION
|
81
|
+
ruby 2.3.1p112
|
82
|
+
|
83
|
+
BUNDLED WITH
|
84
|
+
1.13.6
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2016 NoBetterThan97
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# Twitter API
|
2
|
+
|
3
|
+
[](https://travis-ci.org/NoBetterThan97/tweetsearch)
|
4
|
+
|
5
|
+
:hammer: Everything from scratch
|
6
|
+
|
7
|
+
## Usage
|
8
|
+
|
9
|
+
1. Get application access token
|
10
|
+
|
11
|
+
- Fill in `api_key` and `api_secret` in `.env`
|
12
|
+
- Run `rake util:access_token`
|
13
|
+
- Fill in the `access_token` in `.env`
|
14
|
+
|
15
|
+
2. Run tests
|
16
|
+
|
17
|
+
```bash
|
18
|
+
$ bundle exec rake test
|
19
|
+
```
|
20
|
+
|
21
|
+
3. Run quality tests
|
22
|
+
|
23
|
+
```bash
|
24
|
+
$ bundle exec rake quality
|
25
|
+
```
|
data/Rakefile
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'base64'
|
3
|
+
require 'dotenv'
|
4
|
+
require 'httparty'
|
5
|
+
require 'rake/testtask'
|
6
|
+
|
7
|
+
Dotenv.load
|
8
|
+
|
9
|
+
# rake test
|
10
|
+
Rake::TestTask.new do |task|
|
11
|
+
task.pattern = 'spec/**/*_spec.rb'
|
12
|
+
end
|
13
|
+
|
14
|
+
namespace :util do
|
15
|
+
desc 'Generate new access token'
|
16
|
+
task :access_token do
|
17
|
+
OAUTH_ENDPOINT = 'https://api.twitter.com/oauth2/token'
|
18
|
+
basic_token = Base64.urlsafe_encode64("#{ENV['api_key']}:#{ENV['api_secret']}")
|
19
|
+
token_response = HTTParty.post(OAUTH_ENDPOINT, headers: { Authorization: "Basic #{basic_token}" },
|
20
|
+
query: { grant_type: 'client_credentials' }).parsed_response
|
21
|
+
puts "Access Token: #{token_response['access_token']}"
|
22
|
+
end
|
23
|
+
|
24
|
+
desc 'deletes cassettes'
|
25
|
+
task :delete_cassettes do
|
26
|
+
sh 'rm -r spec/support/cassettes'
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
namespace :quality do
|
31
|
+
LIB_DIR = 'lib'
|
32
|
+
|
33
|
+
desc 'perform all quality checks'
|
34
|
+
task default: [:rubocop, :flay, :flog]
|
35
|
+
|
36
|
+
desc 'linting code'
|
37
|
+
task(:rubocop) { sh "bundle exec rubocop #{LIB_DIR}" }
|
38
|
+
|
39
|
+
desc 'flay'
|
40
|
+
task(:flay) { sh "bundle exec flay #{LIB_DIR}" }
|
41
|
+
|
42
|
+
desc 'flog'
|
43
|
+
task(:flog) { sh "bundle exec flog #{LIB_DIR}" }
|
44
|
+
end
|
45
|
+
|
46
|
+
desc 'runs all quality tasks'
|
47
|
+
task quality: ['quality:default']
|
data/bin/tweetsearch
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require 'dotenv'
|
5
|
+
Dotenv.load
|
6
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), *%w(.. lib))
|
7
|
+
require 'tweetsearch'
|
8
|
+
|
9
|
+
|
10
|
+
print 'Hashtags (separated by space): '
|
11
|
+
@tags = gets.chomp.split.map { |tag| tag.start_with?('#') ? tag : "##{tag}" }
|
12
|
+
@client = TweetSearch::TwitterClient.new(access_token: ENV['access_token'])
|
13
|
+
tweets = TweetSearch::Tweet.search(@tags, using_client: @client)
|
14
|
+
print tweets.map{|item| print item.text + "/n" }
|
data/lib/tweetsearch.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module TweetSearch
|
3
|
+
class Tweet
|
4
|
+
attr_reader :id, :created_at, :text
|
5
|
+
|
6
|
+
def initialize(data)
|
7
|
+
@id = data['id']
|
8
|
+
@created_at = DateTime.parse(data['created_at'])
|
9
|
+
@text = data['text']
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.search(*tags, using_client:)
|
13
|
+
client = using_client
|
14
|
+
client.search_tweets(tags).map { |data| new(data) }
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'yaml'
|
3
|
+
require 'httparty'
|
4
|
+
|
5
|
+
module TweetSearch
|
6
|
+
class TwitterClient
|
7
|
+
API_BASE = 'https://api.twitter.com/'
|
8
|
+
API_VERSION = '1.1/'
|
9
|
+
SEARCH_TWEET_ENDPOINT = URI.join(API_BASE, API_VERSION, 'search/tweets.json')
|
10
|
+
|
11
|
+
def initialize(access_token:)
|
12
|
+
@access_token = access_token
|
13
|
+
end
|
14
|
+
|
15
|
+
def search_tweets(*tags)
|
16
|
+
HTTParty.get(SEARCH_TWEET_ENDPOINT,
|
17
|
+
headers: authorization_header,
|
18
|
+
query: { q: tags.join(' ') }).parsed_response['statuses']
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
def authorization_header
|
24
|
+
@authorization_header ||= { Authorization: "Bearer #{@access_token}" }
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'simplecov'
|
3
|
+
SimpleCov.start
|
4
|
+
|
5
|
+
require 'vcr'
|
6
|
+
require 'yaml'
|
7
|
+
require 'dotenv'
|
8
|
+
require 'webmock'
|
9
|
+
require 'minitest/rg'
|
10
|
+
require 'minitest/autorun'
|
11
|
+
|
12
|
+
require_relative '../lib/tweetsearch/twitter_client.rb'
|
13
|
+
require_relative '../lib/tweetsearch/tweet.rb'
|
14
|
+
|
15
|
+
Dotenv.load
|
16
|
+
|
17
|
+
CASSETTES_FOLDER = 'spec/support/cassettes'
|
18
|
+
TAGS = ['#food', '#yum'].freeze
|
19
|
+
|
20
|
+
VCR.configure do |config|
|
21
|
+
config.cassette_library_dir = CASSETTES_FOLDER
|
22
|
+
config.hook_into :webmock
|
23
|
+
|
24
|
+
config.filter_sensitive_data('<ACCESS_TOKEN>') { ENV['access_token'] }
|
25
|
+
end
|
26
|
+
|
27
|
+
def cassette_name(path_to_spec, description)
|
28
|
+
spec_filename = File.basename(path_to_spec, '.*')
|
29
|
+
spec_description = description.gsub(/^test_[0-9]+_/, '')
|
30
|
+
|
31
|
+
"#{spec_filename} #{spec_description}"
|
32
|
+
end
|
data/spec/support/cassettes/tweet_spec_should_return_Tweets_that_contain_specific_hashtags.yml
ADDED
@@ -0,0 +1,232 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.twitter.com/1.1/search/tweets.json?q=%23food%20%23yum
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Authorization:
|
11
|
+
- Bearer <ACCESS_TOKEN>
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 200
|
15
|
+
message: OK
|
16
|
+
headers:
|
17
|
+
Cache-Control:
|
18
|
+
- no-cache, no-store, must-revalidate, pre-check=0, post-check=0
|
19
|
+
Content-Disposition:
|
20
|
+
- attachment; filename=json.json
|
21
|
+
Content-Length:
|
22
|
+
- '69780'
|
23
|
+
Content-Type:
|
24
|
+
- application/json;charset=utf-8
|
25
|
+
Date:
|
26
|
+
- Wed, 26 Oct 2016 12:53:46 GMT
|
27
|
+
Expires:
|
28
|
+
- Tue, 31 Mar 1981 05:00:00 GMT
|
29
|
+
Last-Modified:
|
30
|
+
- Wed, 26 Oct 2016 12:53:46 GMT
|
31
|
+
Pragma:
|
32
|
+
- no-cache
|
33
|
+
Server:
|
34
|
+
- tsa_a
|
35
|
+
Set-Cookie:
|
36
|
+
- guest_id=v1%3A147748642666281467; Domain=.twitter.com; Path=/; Expires=Fri,
|
37
|
+
26-Oct-2018 12:53:46 UTC
|
38
|
+
Status:
|
39
|
+
- 200 OK
|
40
|
+
Strict-Transport-Security:
|
41
|
+
- max-age=631138519
|
42
|
+
X-Access-Level:
|
43
|
+
- read
|
44
|
+
X-Connection-Hash:
|
45
|
+
- 004ac553420d7271d40e613465db2493
|
46
|
+
X-Content-Type-Options:
|
47
|
+
- nosniff
|
48
|
+
X-Frame-Options:
|
49
|
+
- SAMEORIGIN
|
50
|
+
X-Rate-Limit-Limit:
|
51
|
+
- '450'
|
52
|
+
X-Rate-Limit-Remaining:
|
53
|
+
- '447'
|
54
|
+
X-Rate-Limit-Reset:
|
55
|
+
- '1477487286'
|
56
|
+
X-Response-Time:
|
57
|
+
- '68'
|
58
|
+
X-Transaction:
|
59
|
+
- 009b66dc00bcba80
|
60
|
+
X-Twitter-Response-Tags:
|
61
|
+
- BouncerCompliant
|
62
|
+
X-Xss-Protection:
|
63
|
+
- 1; mode=block
|
64
|
+
body:
|
65
|
+
encoding: UTF-8
|
66
|
+
string: '{"statuses":[{"created_at":"Wed Oct 26 12:49:42 +0000 2016","id":791260516731813888,"id_str":"791260516731813888","text":"RT
|
67
|
+
@nurse_hatsumi: Thank you so much micah_lonelyuae for the fabulous treat!!!
|
68
|
+
Tsup!!! #food #foodporn #yum\u2026 https:\/\/t.co\/U4yFcwQ3aY","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[87,92]},{"text":"foodporn","indices":[93,102]},{"text":"yum","indices":[103,107]}],"symbols":[],"user_mentions":[{"screen_name":"nurse_hatsumi","name":"Kansas
|
69
|
+
Walters","id":124217370,"id_str":"124217370","indices":[3,17]}],"urls":[{"url":"https:\/\/t.co\/U4yFcwQ3aY","expanded_url":"https:\/\/www.instagram.com\/p\/BMBtHOIjJWR\/","display_url":"instagram.com\/p\/BMBtHOIjJWR\/","indices":[109,132]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
70
|
+
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
|
+
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":2139,"friends_count":3,"listed_count":3164,"created_at":"Thu
|
73
|
+
Aug 25 12:12:20 +0000 2016","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":150741,"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":"2B7BB9","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":"Wed
|
74
|
+
Oct 26 12:46:26 +0000 2016","id":791259694241353733,"id_str":"791259694241353733","text":"Thank
|
75
|
+
you so much micah_lonelyuae for the fabulous treat!!! Tsup!!! #food #foodporn
|
76
|
+
#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
|
77
|
+
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
|
78
|
+
Walters","screen_name":"nurse_hatsumi","location":"Abu Dhabi, U.A.E.","description":"I''m
|
79
|
+
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
|
80
|
+
Mar 18 17:05:23 +0000 2010","favourites_count":44,"utc_offset":14400,"time_zone":"Abu
|
81
|
+
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
|
82
|
+
Dhabi","full_name":"Abu Dhabi, United Arab Emirates","country_code":"AE","country":"United
|
83
|
+
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"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed
|
84
|
+
Oct 26 12:49:42 +0000 2016","id":791260515280510976,"id_str":"791260515280510976","text":"RT
|
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
|
87
|
+
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
|
+
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":2139,"friends_count":3,"listed_count":3164,"created_at":"Thu
|
90
|
+
Aug 25 12:12:20 +0000 2016","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":150741,"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":"2B7BB9","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":"Wed
|
91
|
+
Oct 26 12:46:03 +0000 2016","id":791259598669971456,"id_str":"791259598669971456","text":"A
|
92
|
+
bunch of pan #friedchicken for the fam. #scddiet #scdlegal #food #foodporn
|
93
|
+
#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
|
94
|
+
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,
|
95
|
+
USA","description":"Just a guy trying to learn to make food an alternative
|
96
|
+
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
|
97
|
+
Sep 27 23:00:23 +0000 2015","favourites_count":0,"utc_offset":-14400,"time_zone":"Eastern
|
98
|
+
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"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed
|
99
|
+
Oct 26 12:49:40 +0000 2016","id":791260505986007040,"id_str":"791260505986007040","text":"RT
|
100
|
+
@EDevenuti: i got this fantastic #puntarelle\n\n#food #foodporn #yum #instafood
|
101
|
+
#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
|
102
|
+
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
|
103
|
+
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
|
+
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":2139,"friends_count":3,"listed_count":3164,"created_at":"Thu
|
106
|
+
Aug 25 12:12:20 +0000 2016","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":150741,"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":"2B7BB9","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":"Wed
|
107
|
+
Oct 26 12:44:17 +0000 2016","id":791259154031579136,"id_str":"791259154031579136","text":"i
|
108
|
+
got this fantastic #puntarelle\n\n#food #foodporn #yum #instafood #yummy #amazing
|
109
|
+
#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
|
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":439993746,"id_str":"439993746","name":"Emiliano
|
111
|
+
De Venuti","screen_name":"EDevenuti","location":"Ceo&Founder @Vin\u00f3forum
|
112
|
+
","description":"Ceo@Vinoforum\/\/Specialist in #communication #marketing
|
113
|
+
#socialmediastrategy #eventplanningbusiness #love #happiness #resilience #wine
|
114
|
+
#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
|
115
|
+
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,
|
116
|
+
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
|
117
|
+
Oct 26 12:49:31 +0000 2016","id":791260468912553984,"id_str":"791260468912553984","text":"RT
|
118
|
+
@magnifyk: I''m at Temple! #food #foodporn #yum #instafood #TagsForLikes #yummy
|
119
|
+
#amazing #instagood #photooftheday #sweet #dinn\u2026 https:\/\/\u2026","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[29,34]},{"text":"foodporn","indices":[35,44]},{"text":"yum","indices":[45,49]},{"text":"instafood","indices":[50,60]},{"text":"TagsForLikes","indices":[61,74]},{"text":"yummy","indices":[75,81]},{"text":"amazing","indices":[82,90]},{"text":"instagood","indices":[91,101]},{"text":"photooftheday","indices":[102,116]},{"text":"sweet","indices":[117,123]},{"text":"dinn","indices":[124,129]}],"symbols":[],"user_mentions":[{"screen_name":"magnifyk","name":"MAGNIFYK","id":39584114,"id_str":"39584114","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
120
|
+
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
|
+
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":2139,"friends_count":3,"listed_count":3164,"created_at":"Thu
|
123
|
+
Aug 25 12:12:20 +0000 2016","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":150741,"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":"2B7BB9","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":"Wed
|
124
|
+
Oct 26 12:38:36 +0000 2016","id":791257720179585024,"id_str":"791257720179585024","text":"I''m
|
125
|
+
at Temple! #food #foodporn #yum #instafood #TagsForLikes #yummy #amazing #instagood
|
126
|
+
#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
|
127
|
+
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
|
128
|
+
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
|
129
|
+
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"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed
|
130
|
+
Oct 26 12:49:29 +0000 2016","id":791260459206897664,"id_str":"791260459206897664","text":"RT
|
131
|
+
@GoragotHao: Good food #food #foodporn #yum #instafood #TagsForLikes #yummy
|
132
|
+
#amazing #instagood\u2026 https:\/\/t.co\/oS1BqMzaL2","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[26,31]},{"text":"foodporn","indices":[32,41]},{"text":"yum","indices":[42,46]},{"text":"instafood","indices":[47,57]},{"text":"TagsForLikes","indices":[58,71]},{"text":"yummy","indices":[72,78]},{"text":"amazing","indices":[79,87]},{"text":"instagood","indices":[88,98]}],"symbols":[],"user_mentions":[{"screen_name":"GoragotHao","name":"Goragot_Hao","id":239729719,"id_str":"239729719","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/oS1BqMzaL2","expanded_url":"https:\/\/www.instagram.com\/p\/BMBr-qlj1Dv\/","display_url":"instagram.com\/p\/BMBr-qlj1Dv\/","indices":[100,123]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
133
|
+
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
|
+
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":2139,"friends_count":3,"listed_count":3164,"created_at":"Thu
|
136
|
+
Aug 25 12:12:20 +0000 2016","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":150741,"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":"2B7BB9","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":"Wed
|
137
|
+
Oct 26 12:36:32 +0000 2016","id":791257200203268096,"id_str":"791257200203268096","text":"Good
|
138
|
+
food #food #foodporn #yum #instafood #TagsForLikes #yummy #amazing #instagood\u2026
|
139
|
+
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
|
140
|
+
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,
|
141
|
+
Bangkok","description":"Instagram\/ snapchat\/shots- @goragot_hao twitter-
|
142
|
+
@goragothao BKK Thailand","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":85,"friends_count":83,"listed_count":5,"created_at":"Tue
|
143
|
+
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"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed
|
144
|
+
Oct 26 12:49:00 +0000 2016","id":791260340457709568,"id_str":"791260340457709568","text":"Let''s
|
145
|
+
just keep calm, eat a #burger and wait for the #weekend. #WednesdayWisdom
|
146
|
+
#Food #yum","truncated":false,"entities":{"hashtags":[{"text":"burger","indices":[28,35]},{"text":"weekend","indices":[53,61]},{"text":"WednesdayWisdom","indices":[63,79]},{"text":"Food","indices":[80,85]},{"text":"yum","indices":[86,90]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
147
|
+
href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\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":225101429,"id_str":"225101429","name":"RushHrs","screen_name":"RushHrs_India","location":"Pune","description":"100%
|
148
|
+
Chicken is the best Chicken!","url":"http:\/\/t.co\/VIOxmEnwWp","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/VIOxmEnwWp","expanded_url":"http:\/\/www.rushhrs.com","display_url":"rushhrs.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":605,"friends_count":565,"listed_count":52,"created_at":"Fri
|
149
|
+
Dec 10 17:52:06 +0000 2010","favourites_count":220,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1621,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/196684213\/rushhrs-TM.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/196684213\/rushhrs-TM.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000729575012\/8aee794d96f5ab7dc7bfe259d561b5dc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000729575012\/8aee794d96f5ab7dc7bfe259d561b5dc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/225101429\/1455174941","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed
|
150
|
+
Oct 26 12:47:49 +0000 2016","id":791260043761025024,"id_str":"791260043761025024","text":"Turkish
|
151
|
+
coffee #food #pics #yum https:\/\/t.co\/Efr2Ly0YTx","truncated":false,"entities":{"hashtags":[{"text":"food","indices":[15,20]},{"text":"pics","indices":[21,26]},{"text":"yum","indices":[27,31]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":791260041726877696,"id_str":"791260041726877696","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/Cvse0NAXYAA4o4Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Cvse0NAXYAA4o4Y.jpg","url":"https:\/\/t.co\/Efr2Ly0YTx","display_url":"pic.twitter.com\/Efr2Ly0YTx","expanded_url":"https:\/\/twitter.com\/AnthonyKovloski\/status\/791260043761025024\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":900,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":675,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":791260041726877696,"id_str":"791260041726877696","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/Cvse0NAXYAA4o4Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Cvse0NAXYAA4o4Y.jpg","url":"https:\/\/t.co\/Efr2Ly0YTx","display_url":"pic.twitter.com\/Efr2Ly0YTx","expanded_url":"https:\/\/twitter.com\/AnthonyKovloski\/status\/791260043761025024\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":900,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":675,"h":900,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca
|
152
|
+
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":2273212922,"id_str":"2273212922","name":"Anthony
|
153
|
+
Kovloski","screen_name":"AnthonyKovloski","location":"","description":"I''ve
|
154
|
+
got my tentacles in many pots.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":333,"friends_count":1071,"listed_count":187,"created_at":"Thu
|
155
|
+
Jan 02 16:03:01 +0000 2014","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24139,"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\/744977794128613376\/ECaDEVYH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/744977794128613376\/ECaDEVYH_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":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":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed
|
156
|
+
Oct 26 12:46:26 +0000 2016","id":791259694241353733,"id_str":"791259694241353733","text":"Thank
|
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"}}'
|
230
|
+
http_version:
|
231
|
+
recorded_at: Wed, 26 Oct 2016 12:53:47 GMT
|
232
|
+
recorded_with: VCR 3.0.3
|