diff --git a/spec/factories/channel.rb b/spec/factories/channel.rb index dd6edcf51..3ed0d6ea7 100644 --- a/spec/factories/channel.rb +++ b/spec/factories/channel.rb @@ -23,28 +23,30 @@ FactoryBot.define do end factory :twitter_channel do - transient do - custom_options { {} } - end - area { 'Twitter::Account' } options do { - adapter: 'twitter', - auth: { - consumer_key: 'some', - consumer_secret: 'some', - oauth_token: 'key', - oauth_token_secret: 'secret', + adapter: 'twitter', + user: { + id: oauth_token&.split('-')&.first, + screen_name: 'nicole_braun', + name: 'Nicole Braun', }, - user: { - id: 'system_id', - screen_name: 'system_login', + auth: { + external_credential_id: external_credential.id, + oauth_token: oauth_token, + oauth_token_secret: oauth_token_secret, }, - sync: { - import_older_tweets: true, - track_retweets: true, - search: [ + sync: { + webhook_id: '', + track_retweets: true, + mentions: { + group_id: Group.first.id + }, + direct_messages: { + group_id: Group.first.id + }, + search: [ { term: 'zammad', group_id: Group.first.id @@ -54,15 +56,29 @@ FactoryBot.define do group_id: Group.first.id } ], - mentions: { - group_id: Group.first.id - }, - direct_messages: { - group_id: Group.first.id - } - } + }, + subscribed_to_webhook_id: external_credential.credentials[:webhook_id], }.deep_merge(custom_options) end + + transient do + custom_options { {} } + external_credential { create(:twitter_credential) } + oauth_token { external_credential.credentials[:oauth_token] } + oauth_token_secret { external_credential.credentials[:oauth_token_secret] } + end + + trait :legacy do + transient do + custom_options { { sync: { import_older_tweets: true } } } + end + end + + trait :invalid do + transient do + external_credential { create(:twitter_credential, :invalid) } + end + end end end end diff --git a/spec/factories/external_credential.rb b/spec/factories/external_credential.rb index 0572ef5ac..c4aaa1e1e 100644 --- a/spec/factories/external_credential.rb +++ b/spec/factories/external_credential.rb @@ -9,10 +9,48 @@ FactoryBot.define do name { 'twitter' } credentials do - { consumer_key: '123', - consumer_secret: '123', - oauth_token: '123', - oauth_token_secret: '123' } + { + consumer_key: consumer_key, + consumer_secret: consumer_secret, + oauth_token: oauth_token, + oauth_token_secret: oauth_token_secret, + env: 'zammad', + controller: 'external_credentials', + action: 'app_verify', + provider: 'twitter', + webhook_id: Faker::Number.number(19), + } + end + + # Our Twitter API tests need valid credentials, + # but storing them in this file is bad for security. + # So what do we do? + # + # * Paste the keys in here, + # * run the tests (with `use_vcr: :with_oauth_headers`), + # * let VCR cache the network traffic, and + # * change the keys back to "REDACTED" + # (both here and in the resulting VCR cassettes). + transient do + consumer_key { 'REDACTED' } + consumer_secret { 'REDACTED' } + oauth_token { 'REDACTED' } + oauth_token_secret { 'REDACTED' } + end + + trait :invalid do + # If these credentials are fake/invalid, + # why don't we use Faker to generate them dynamically? + # + # Our Twitter API tests use VCR to cache HTTP traffic. + # If the values change each time you run the test, + # VCR gets confused and raises errors. + transient do + consumer_key { 'q7K8GEkhyCHs9jHLtkmD9Kod4' } + consumer_secret { 'LIDrpO6lRukO0PSicv00x9n8qMPvqvMq9mNInsby5sIkwN2J81' } + oauth_token { '7783712304-H9s75r2d532diPmJYK6JrvUWxu9gTDZ6ocjfToL' } + oauth_token_secret { 'XFhmXR1J17zaI3bEikHKG5zNUVHVnjpzPuQc0vNmb4z2y' } + end end end end diff --git a/spec/models/channel_spec.rb b/spec/models/channel_spec.rb index 25c3c3816..0ebb9d138 100644 --- a/spec/models/channel_spec.rb +++ b/spec/models/channel_spec.rb @@ -3,9 +3,57 @@ require 'rails_helper' RSpec.describe Channel do describe '#fetch', use_vcr: :with_oauth_headers do context 'for Twitter driver' do - subject(:twitter_channel) { create(:twitter_channel) } + context 'with valid token' do + subject(:twitter_channel) { create(:twitter_channel) } + + it 'returns true' do + expect(twitter_channel.fetch(true)).to be(true) + end + + it 'sets successful status attributes' do + expect { twitter_channel.fetch(true) } + .to change { twitter_channel.reload.attributes } + .to hash_including( + 'status_in' => 'ok', + 'last_log_in' => '', + 'status_out' => nil, + 'last_log_out' => nil + ) + end + + it 'adds tickets based on config parameters (mention/DM/search)' do + expect { twitter_channel.fetch(true) } + .to change(Ticket, :count).by(21) + + expect(Ticket.last.attributes).to include( + 'title' => 'RT @BarackObama: Kobe was a legend on the court and just getting started in what...', + 'preferences' => { 'channel_id' => twitter_channel.id, + 'channel_screen_name' => twitter_channel.options[:user][:screen_name] }, + 'customer_id' => User.find_by(firstname: 'Zammad', lastname: 'Ali').id + ) + end + + context 'and legacy "import_older_tweets" option' do + subject(:twitter_channel) { create(:twitter_channel, :legacy) } + + it 'adds tickets based on config parameters (mention/DM/search)' do + expect { twitter_channel.fetch(true) } + .to change(Ticket, :count).by(26) + + expect(Ticket.last.attributes).to include( + 'title' => 'Wir haben unsere DMs deaktiviert. ' \ + 'Leider können wir dank der neuen Twitter API k...', + 'preferences' => { 'channel_id' => twitter_channel.id, + 'channel_screen_name' => twitter_channel.options[:user][:screen_name] }, + 'customer_id' => User.find_by(firstname: 'Ccc', lastname: 'Event Logistics').id + ) + end + end + end context 'with invalid token' do + subject(:twitter_channel) { create(:twitter_channel, :invalid) } + it 'returns false' do expect(twitter_channel.fetch(true)).to be(false) end @@ -22,36 +70,6 @@ RSpec.describe Channel do ) end end - - context 'with valid token' do - it 'returns true' do - expect(twitter_channel.fetch(true)).to be(true) - end - - it 'sets successful status attributes' do - expect { twitter_channel.fetch(true) } - .to change { twitter_channel.reload.attributes } - .to hash_including( - 'status_in' => 'ok', - 'last_log_in' => '', - 'status_out' => nil, - 'last_log_out' => nil - ) - end - - it 'adds tickets as appropriate' do - expect { twitter_channel.fetch(true) } - .to change(Ticket, :count).by(26) - - expect(Ticket.last.attributes).to include( - 'title' => 'Wir haben unsere DMs deaktiviert. ' \ - 'Leider können wir dank der neuen Twitter API k...', - 'preferences' => { 'channel_id' => twitter_channel.id, - 'channel_screen_name' => twitter_channel.options[:user][:screen_name] }, - 'customer_id' => User.find_by(firstname: 'Ccc', lastname: 'Event Logistics').id - ) - end - end end end end diff --git a/spec/requests/channels_twitter_spec.rb b/spec/requests/channels_twitter_spec.rb index a67d98e53..8247e2236 100644 --- a/spec/requests/channels_twitter_spec.rb +++ b/spec/requests/channels_twitter_spec.rb @@ -2,7 +2,7 @@ require 'rails_helper' RSpec.describe 'Twitter channel API endpoints', type: :request do let!(:twitter_channel) { create(:twitter_channel) } - let!(:twitter_credential) { create(:twitter_credential) } + let(:twitter_credential) { ExternalCredential.find(twitter_channel.options[:auth][:external_credential_id]) } let(:hash_signature) { %(sha256=#{Base64.strict_encode64(OpenSSL::HMAC.digest('sha256', consumer_secret, payload))}) } let(:consumer_secret) { twitter_credential.credentials[:consumer_secret] } @@ -22,7 +22,8 @@ RSpec.describe 'Twitter channel API endpoints', type: :request do end context 'without valid twitter credentials in the DB' do - let!(:twitter_credential) { create(:twitter_credential, credentials: { foo: 'bar' }) } + let!(:twitter_channel) { create(:twitter_channel, external_credential: twitter_credential) } + let(:twitter_credential) { create(:twitter_credential, credentials: { foo: 'bar' }) } it 'responds 422 Unprocessable Entity' do get '/api/v1/channels_twitter_webhook', params: params, as: :json diff --git a/test/data/vcr_cassettes/models/channel/with_valid_token_adds_tickets_as_appropriate.yml b/test/data/vcr_cassettes/models/channel/and_legacy_import_older_tweets_option_adds_tickets_based_on_config_parameters_mention_dm_search_.yml similarity index 99% rename from test/data/vcr_cassettes/models/channel/with_valid_token_adds_tickets_as_appropriate.yml rename to test/data/vcr_cassettes/models/channel/and_legacy_import_older_tweets_option_adds_tickets_based_on_config_parameters_mention_dm_search_.yml index 493c1b8f7..209adde8f 100644 --- a/test/data/vcr_cassettes/models/channel/with_valid_token_adds_tickets_as_appropriate.yml +++ b/test/data/vcr_cassettes/models/channel/and_legacy_import_older_tweets_option_adds_tickets_based_on_config_parameters_mention_dm_search_.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="8efb0d12349b48e6acaa2ec6ff224cc2", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="8efb0d12349b48e6acaa2ec6ff224cc2", oauth_signature="uABvZoC5sN%2F68E4oxp6Qk6SxO2Y%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795852", oauth_token="key", + oauth_timestamp="1543795852", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -524,9 +524,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="83003a1356235c21998dbe47bd20e034", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="83003a1356235c21998dbe47bd20e034", oauth_signature="KtBt4mbxUM9pQeEHXi%2BywugYuqk%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795853", oauth_token="key", + oauth_timestamp="1543795853", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -769,9 +769,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="bb5275ca035610773ca6172601e35be6", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="bb5275ca035610773ca6172601e35be6", oauth_signature="yk2RDPjsEnljxqdWfmCOjS01ylg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795854", oauth_token="key", + oauth_timestamp="1543795854", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -1227,9 +1227,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="756b2ebc88106059e7afdec3979455ed", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="756b2ebc88106059e7afdec3979455ed", oauth_signature="KYRdmzJiODGS%2BYqqmYUPhwq2Fwc%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795855", oauth_token="key", + oauth_timestamp="1543795855", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -1419,9 +1419,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="de1e719ccd92c862ad99062c09332301", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="de1e719ccd92c862ad99062c09332301", oauth_signature="ueto3kSV%2BcRxu%2FXOod5N4CqW%2BNk%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795855", oauth_token="key", + oauth_timestamp="1543795855", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -1664,9 +1664,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="4b3ceecc83d55c1b720580fb1e3d36db", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="4b3ceecc83d55c1b720580fb1e3d36db", oauth_signature="sYaGT3aj%2BUSwTMuTWouWuQti3BQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795856", oauth_token="key", + oauth_timestamp="1543795856", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -1964,9 +1964,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="9778307d17972ae3edc5b5d2a5530bb4", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9778307d17972ae3edc5b5d2a5530bb4", oauth_signature="qf8Acv3oYLzER%2BF53HL%2F7xQfbvM%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795857", oauth_token="key", + oauth_timestamp="1543795857", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -2213,9 +2213,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="7ff1412c085625c63956f13fee4a0066", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="7ff1412c085625c63956f13fee4a0066", oauth_signature="XTJJazMUukMF7V0QJysnt0RIbV0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795857", oauth_token="key", + oauth_timestamp="1543795857", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -3369,9 +3369,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="db0fdd3eedd9c9a4c4a7dea0f6dd3cc9", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="db0fdd3eedd9c9a4c4a7dea0f6dd3cc9", oauth_signature="5OrIGadCeuoU%2BpDkNkUYviu0awo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795861", oauth_token="key", + oauth_timestamp="1543795861", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -3509,9 +3509,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="12ed1f52923c07c7a35ea78d2d177e7d", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="12ed1f52923c07c7a35ea78d2d177e7d", oauth_signature="UEKkeqCiwZnRNZK2xL9yFh2jYLA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795862", oauth_token="key", + oauth_timestamp="1543795862", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -4496,9 +4496,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="df1d4b0020304d719b581ad2a89ac722", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="df1d4b0020304d719b581ad2a89ac722", oauth_signature="ZVjS8VWcWdYXZpr2I3ZX56DOWTE%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795865", oauth_token="key", + oauth_timestamp="1543795865", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -4744,9 +4744,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="2dbf57fffac364cfd3d3bb63b01ca49f", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="2dbf57fffac364cfd3d3bb63b01ca49f", oauth_signature="DoKz2xUY3qPs%2Bnscylkyemx7acY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795866", oauth_token="key", + oauth_timestamp="1543795866", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -5044,9 +5044,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="43788c0bf65af0ea0e0e59b029a98a58", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="43788c0bf65af0ea0e0e59b029a98a58", oauth_signature="8H%2Bw00OP0m9rjOpLRdQia%2BOjtIo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795866", oauth_token="key", + oauth_timestamp="1543795866", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -5296,9 +5296,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="813d8700f25ff78f741b2c778b312cf7", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="813d8700f25ff78f741b2c778b312cf7", oauth_signature="Ha0OSsfG5yFKzMdNbRHC2Fn9tKo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795867", oauth_token="key", + oauth_timestamp="1543795867", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -5859,9 +5859,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="6ba7598ee7171aa89d5172a75b5e7634", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="6ba7598ee7171aa89d5172a75b5e7634", oauth_signature="RrL7Yjl6GE4OJ4IJX4H5GiYLFJU%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795868", oauth_token="key", + oauth_timestamp="1543795868", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -6105,9 +6105,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="3a2fab4325efb72a9fe7f466fdb96910", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="3a2fab4325efb72a9fe7f466fdb96910", oauth_signature="%2BwYKPEqhsVvUK7IDnOSZpB4J1h0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795869", oauth_token="key", + oauth_timestamp="1543795869", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -6299,9 +6299,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="bab0a69fdb7b4718244cb9e3a86f28d4", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="bab0a69fdb7b4718244cb9e3a86f28d4", oauth_signature="WrbLQ6TcP7153IxnujSFyoJ462w%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795870", oauth_token="key", + oauth_timestamp="1543795870", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -6493,9 +6493,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="b88d83169c5ad58749312e180ccb580a", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b88d83169c5ad58749312e180ccb580a", oauth_signature="mwtfaPm2G4x5pRnOr79wWj%2F4UOc%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795870", oauth_token="key", + oauth_timestamp="1543795870", oauth_token="REDACTED", oauth_version="1.0" Connection: - close diff --git a/test/data/vcr_cassettes/models/channel/with_invalid_token_returns_false.yml b/test/data/vcr_cassettes/models/channel/with_invalid_token_returns_false.yml index 19c0055e3..de413bdb2 100644 --- a/test/data/vcr_cassettes/models/channel/with_invalid_token_returns_false.yml +++ b/test/data/vcr_cassettes/models/channel/with_invalid_token_returns_false.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="b5b77e1667355db2efc64e178b8a0aaa", + - OAuth oauth_consumer_key="q7K8GEkhyCHs9jHLtkmD9Kod4", oauth_nonce="b5b77e1667355db2efc64e178b8a0aaa", oauth_signature="tybPhlz3I5fMRF5%2BE12Pwx3U5XM%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543796201", oauth_token="key", oauth_version="1.0" + oauth_timestamp="1543796201", oauth_token="7783712304-H9s75r2d532diPmJYK6JrvUWxu9gTDZ6ocjfToL", oauth_version="1.0" Connection: - close Host: diff --git a/test/data/vcr_cassettes/models/channel/with_invalid_token_sets_error_nil_status_attributes.yml b/test/data/vcr_cassettes/models/channel/with_invalid_token_sets_error_nil_status_attributes.yml index 19c0055e3..de413bdb2 100644 --- a/test/data/vcr_cassettes/models/channel/with_invalid_token_sets_error_nil_status_attributes.yml +++ b/test/data/vcr_cassettes/models/channel/with_invalid_token_sets_error_nil_status_attributes.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="b5b77e1667355db2efc64e178b8a0aaa", + - OAuth oauth_consumer_key="q7K8GEkhyCHs9jHLtkmD9Kod4", oauth_nonce="b5b77e1667355db2efc64e178b8a0aaa", oauth_signature="tybPhlz3I5fMRF5%2BE12Pwx3U5XM%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543796201", oauth_token="key", oauth_version="1.0" + oauth_timestamp="1543796201", oauth_token="7783712304-H9s75r2d532diPmJYK6JrvUWxu9gTDZ6ocjfToL", oauth_version="1.0" Connection: - close Host: diff --git a/test/data/vcr_cassettes/models/channel/with_valid_token_adds_tickets_based_on_config_parameters_mention_dm_search_.yml b/test/data/vcr_cassettes/models/channel/with_valid_token_adds_tickets_based_on_config_parameters_mention_dm_search_.yml new file mode 100644 index 000000000..8c800525d --- /dev/null +++ b/test/data/vcr_cassettes/models/channel/with_valid_token_adds_tickets_based_on_config_parameters_mention_dm_search_.yml @@ -0,0 +1,5343 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="4cf21224c8251d6a4258c53521e91153", + oauth_signature="1Bhg5ml%2Fqh6g9vzdqS61dVhkOMQ%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796438", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '124247' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:18 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:18 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079643841913533; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:18 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_sndnLJA9djOn3UynRVrAHg=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:18 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - e258dfc9229bc838cd9d50c00177c48a + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '180' + X-Rate-Limit-Remaining: + - '179' + X-Rate-Limit-Reset: + - '1580797338' + X-Response-Time: + - '182' + X-Transaction: + - 00cf981300b03fb6 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"statuses":[{"created_at":"Mon Feb 03 21:11:50 +0000 2020","id":1224440380881428480,"id_str":"1224440380881428480","text":"@hallouberspace + l\u00e4uft zammad bei euch oder braucht das zu viele Ressourcen?\nW\u00e4re + nur ein Agent gleichzeitig. Danke \ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hallouberspace","name":"Uberspace + Support","id":971752295934423040,"id_str":"971752295934423040","indices":[0,15]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":971752295934423040,"in_reply_to_user_id_str":"971752295934423040","in_reply_to_screen_name":"hallouberspace","user":{"id":605754518,"id_str":"605754518","name":"Benedikt","screen_name":"_benrich","location":"D\u00fcren","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":113,"listed_count":2,"created_at":"Mon + Jun 11 21:18:54 +0000 2012","favourites_count":1190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":201,"lang":null,"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\/1163492126556135425\/puANjvZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163492126556135425\/puANjvZp_normal.jpg","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"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":"de"},{"created_at":"Mon + Feb 03 20:24:40 +0000 2020","id":1224428510225354753,"id_str":"1224428510225354753","text":"@jackmcdade + you can pay for it too \u2013 there\u2019s a hosted version: https:\/\/t.co\/QrFNUrAszo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack + McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/QrFNUrAszo","expanded_url":"https:\/\/zammad.com\/pricing","display_url":"zammad.com\/pricing","indices":[63,86]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot + for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427776654135297,"in_reply_to_status_id_str":"1224427776654135297","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix + Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend + Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue + Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"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":"Mon + Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade + https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack + McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot + for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix + Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend + Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue + Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"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":"Fri + Jan 31 15:56:15 +0000 2020","id":1223273797987508227,"id_str":"1223273797987508227","text":"@he_dfau + @zammadhq Schau mal hier: \nhttps:\/\/t.co\/GZ2xhchtLp\n\nevtl. kannst Du + da ein PR stellen mti Vorschl\u00e4gen. Opt\u2026 https:\/\/t.co\/6qyns6vxMC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"he_dfau","name":"Henrik + Elsner","id":772687544005824512,"id_str":"772687544005824512","indices":[0,8]},{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[9,18]}],"urls":[{"url":"https:\/\/t.co\/GZ2xhchtLp","expanded_url":"https:\/\/github.com\/zammad\/zammad\/blob\/develop\/app\/assets\/javascripts\/app\/lib\/app_post\/utils.coffee#L826","display_url":"github.com\/zammad\/zammad\/\u2026","indices":[36,59]},{"url":"https:\/\/t.co\/6qyns6vxMC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223273797987508227","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot + for Mac\u003c\/a\u003e","in_reply_to_status_id":1223188240078909440,"in_reply_to_status_id_str":"1223188240078909440","in_reply_to_user_id":772687544005824512,"in_reply_to_user_id_str":"772687544005824512","in_reply_to_screen_name":"he_dfau","user":{"id":114574459,"id_str":"114574459","name":"Johannes","screen_name":"frank_zabel","location":"","description":"mac, + coco, iPhone, Perl Coder\u2026Official grey market provider","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":402,"listed_count":15,"created_at":"Mon + Feb 15 21:53:34 +0000 2010","favourites_count":2398,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5123,"lang":null,"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\/1372613935\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372613935\/image_normal.jpg","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":false,"follow_request_sent":false,"notifications":false,"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":"de"},{"created_at":"Fri + Jan 31 12:05:12 +0000 2020","id":1223215653362028548,"id_str":"1223215653362028548","text":"RT + @ManUtd: This is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC + https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[49,54]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester + United","id":558797310,"id_str":"558797310","indices":[3,10]},{"screen_name":"B_Fernandes8","name":"Bruno + Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[32,45]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310","video_info":{"aspect_ratio":[1,1],"duration_millis":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":558797310,"id_str":"558797310","name":"Manchester + United","screen_name":"ManUtd","location":"Manchester, England","description":"Official + #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 + | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe + | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri + Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Jan 31 09:00:00 +0000 2020","id":1223169045505007619,"id_str":"1223169045505007619","text":"This + is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[37,42]}],"symbols":[],"user_mentions":[{"screen_name":"B_Fernandes8","name":"Bruno + Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[20,33]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/ads.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads\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":558797310,"id_str":"558797310","name":"Manchester + United","screen_name":"ManUtd","location":"Manchester, England","description":"Official + #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 + | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe + | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri + Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27498,"favorite_count":95079,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27498,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq + Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail + verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik + Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU + Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon + Sep 05 06:47:21 +0000 2016","favourites_count":234,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"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":"de"},{"created_at":"Fri + Jan 31 05:51:33 +0000 2020","id":1223121619561799682,"id_str":"1223121619561799682","text":"@Nami_fight4life + Omg.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nami_fight4life","name":"#EndAnimalSacrifices + \ud83c\uddee\ud83c\uddf3","id":2519467770,"id_str":"2519467770","indices":[0,16]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1223103807283810304,"in_reply_to_status_id_str":"1223103807283810304","in_reply_to_user_id":2519467770,"in_reply_to_user_id_str":"2519467770","in_reply_to_screen_name":"Nami_fight4life","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad + Mustafa \ud83c\uddf5\ud83c\uddf0\ud83c\uddf5\ud83c\uddf0","screen_name":"M_ZAMMAD_KHAN","location":"Multan, + Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.facebook.com\/zammad.mustafa","display_url":"facebook.com\/zammad.mustafa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1422,"friends_count":1402,"listed_count":1,"created_at":"Thu + Jul 31 06:49:25 +0000 2014","favourites_count":3428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1889,"lang":null,"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\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","profile_link_color":"7FDBB6","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":false,"follow_request_sent":false,"notifications":false,"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,"lang":"und"},{"created_at":"Thu + Jan 30 18:07:57 +0000 2020","id":1222944555894480898,"id_str":"1222944555894480898","text":"RT + @SportingCP_en: Take good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SportingCP_en","name":"Sporting + CP_en","id":761398686,"id_str":"761398686","indices":[3,17]},{"screen_name":"ManUtd","name":"Manchester + United","id":558797310,"id_str":"558797310","indices":[46,53]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Jan 29 17:43:06 +0000 2020","id":1222575912140537859,"id_str":"1222575912140537859","text":"Take + good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester + United","id":558797310,"id_str":"558797310","indices":[27,34]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":761398686,"id_str":"761398686","name":"Sporting + CP_en","screen_name":"SportingCP_en","location":"","description":"Official + English Sporting Clube de Portugal Twitter account! #SportingCP Portuguese + Twitter: @Sporting_CP","url":"https:\/\/t.co\/9XUoKHIGcg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9XUoKHIGcg","expanded_url":"http:\/\/www.sporting.pt\/en","display_url":"sporting.pt\/en","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52763,"friends_count":60,"listed_count":259,"created_at":"Thu + Aug 16 11:47:43 +0000 2012","favourites_count":1533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A7043","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1162012069991997440\/3QWpYofX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162012069991997440\/3QWpYofX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761398686\/1580384764","profile_link_color":"1A7043","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27798,"favorite_count":135828,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27798,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Jan 30 18:06:30 +0000 2020","id":1222944189534687232,"id_str":"1222944189534687232","text":"RT + @ManUtd: Bruno, meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester + United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Jan 30 17:33:49 +0000 2020","id":1222935963116232705,"id_str":"1222935963116232705","text":"Bruno, + meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":558797310,"id_str":"558797310","name":"Manchester + United","screen_name":"ManUtd","location":"Manchester, England","description":"Official + #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 + | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe + | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri + Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14296,"favorite_count":93909,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":14296,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},{"created_at":"Thu + Jan 30 18:06:24 +0000 2020","id":1222944162296799239,"id_str":"1222944162296799239","text":"RT + @ManUtd: \ud83d\udd34 \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted + to announce the signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[20,25]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester + United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Jan 30 17:02:20 +0000 2020","id":1222928041539776512,"id_str":"1222928041539776512","text":"\ud83d\udd34 + \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted to announce the + signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[8,13]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter for Advertisers\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":558797310,"id_str":"558797310","name":"Manchester + United","screen_name":"ManUtd","location":"Manchester, England","description":"Official + #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 + | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe + | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031982,"friends_count":127,"listed_count":22417,"created_at":"Fri + Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43127,"favorite_count":145577,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":43127,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover + jobs for design, product, ux, ui, engineering, pm, research, and more via + Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue + Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"lang":null,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Jan 30 14:56:38 +0000 2020","id":1222896407524212736,"id_str":"1222896407524212736","text":"@hanspagel + @heyscrumpy @mrthorsteneckel We don''t \ud83d\ude40 However, a look at our + agent statistics per SaaS instance shows\u2026 https:\/\/t.co\/uvcrf8VzUn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hanspagel","name":"hans + \ud83d\udc40","id":281991630,"id_str":"281991630","indices":[0,10]},{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[11,22]},{"screen_name":"MrThorstenEckel","name":"Thorsten + Eckel","id":2474118319,"id_str":"2474118319","indices":[23,39]}],"urls":[{"url":"https:\/\/t.co\/uvcrf8VzUn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222896407524212736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1222881209384161283,"in_reply_to_status_id_str":"1222881209384161283","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"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,"lang":"en"},{"created_at":"Thu + Jan 30 07:48:15 +0000 2020","id":1222788601672601601,"id_str":"1222788601672601601","text":"RT + @SpaceX: Successful deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpaceX","name":"SpaceX","id":34743251,"id_str":"34743251","indices":[3,10]}],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251"}]},"extended_entities":{"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251","video_info":{"aspect_ratio":[16,9],"duration_millis":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, + CA","description":"SpaceX designs, manufactures and launches the world\u2019s + most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690297,"friends_count":106,"listed_count":25266,"created_at":"Thu + Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad + Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue + Aug 13 13:57:50 +0000 2019","favourites_count":42,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"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\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Jan 29 15:11:16 +0000 2020","id":1222537702358171648,"id_str":"1222537702358171648","text":"Successful + deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media + Studio\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":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, + CA","description":"SpaceX designs, manufactures and launches the world\u2019s + most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690297,"friends_count":106,"listed_count":25266,"created_at":"Thu + Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3741,"favorite_count":28636,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3741,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Jan 29 00:11:09 +0000 2020","id":1222311179307094018,"id_str":"1222311179307094018","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + 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":294510881,"id_str":"294510881","name":"Andr\u00e9 + Bauer","screen_name":"mono_tek","location":"Dresden, Germany","description":"Sysadmin + | Open source enthusiast | Caravan traveler | @Kubernetesio | @zammadhq | + Site reliability engineer @Kiwigrid | Tweets are my own (opinion)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":584,"listed_count":12,"created_at":"Sat + May 07 08:36:25 +0000 2011","favourites_count":1897,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1291,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651386341171703809\/t2jAQDHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651386341171703809\/t2jAQDHu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294510881\/1455978477","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 19:20:11 +0000 2020","id":1222237955588227075,"id_str":"1222237955588227075","text":"Bring + it on :\u2019) #TayyarHain #PSL2020 https:\/\/t.co\/drKzmbqnss","truncated":false,"entities":{"hashtags":[{"text":"TayyarHain","indices":[16,27]},{"text":"PSL2020","indices":[28,36]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/drKzmbqnss","expanded_url":"https:\/\/twitter.com\/thepslt20\/status\/1222185724927184898","display_url":"twitter.com\/thepslt20\/stat\u2026","indices":[37,60]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222185724927184898,"quoted_status_id_str":"1222185724927184898","quoted_status":{"created_at":"Tue + Jan 28 15:52:38 +0000 2020","id":1222185724927184898,"id_str":"1222185724927184898","text":"\u201cTayyar + Hain\u201d \n\n& this is how our cricket mela begins with the sound of + #HBLPSLV anthem\n\n #TayyarHain \ud83d\udd0a\n\nFull Video\u2026 https:\/\/t.co\/gUPeBu2TCY","truncated":true,"entities":{"hashtags":[{"text":"HBLPSLV","indices":[76,84]},{"text":"TayyarHain","indices":[94,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gUPeBu2TCY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222185724927184898","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media + Studio\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":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official + account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 + https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1373445,"friends_count":111,"listed_count":454,"created_at":"Wed + Aug 26 16:33:48 +0000 2015","favourites_count":247,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10021,"lang":null,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":824,"favorite_count":4964,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Jan 28 12:46:22 +0000 2020","id":1222138849318621184,"id_str":"1222138849318621184","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":3354974812,"id_str":"3354974812","name":"stubble.IO","screen_name":"stubbleIO","location":"Munich, + Germany","description":"Curated Blog with Deals for Web Designers & Developers. + Imprint: https:\/\/t.co\/J3xWFPQ6zO","url":"https:\/\/t.co\/gm5VwxvzdK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gm5VwxvzdK","expanded_url":"http:\/\/stubble.IO","display_url":"stubble.IO","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/J3xWFPQ6zO","expanded_url":"http:\/\/stbb.li\/legal","display_url":"stbb.li\/legal","indices":[65,88]}]}},"protected":false,"followers_count":618,"friends_count":1088,"listed_count":12,"created_at":"Thu + Jul 02 11:45:19 +0000 2015","favourites_count":306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5593,"lang":null,"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\/695741537964179461\/2xwxUiGU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3354974812\/1454714975","profile_link_color":"324B77","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq + Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users + ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, + Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, + Discourse & other open source instances for you, so you don''t have to. + Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun + Sep 01 14:44:59 +0000 2019","favourites_count":139,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49,"lang":null,"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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":false,"follow_request_sent":false,"notifications":false,"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,"lang":"en"},{"created_at":"Tue + Jan 28 11:18:07 +0000 2020","id":1222116640747393026,"id_str":"1222116640747393026","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/breakthecodenow.blogspot.com\/\" rel=\"nofollow\"\u003ebytecode__\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":1066962987276103681,"id_str":"1066962987276103681","name":"ByteCode","screen_name":"byte_code_","location":"India","description":"A + bot by @rishabh_10_ \nRetweets #code #coding #programming and more.\nInstagram + - dev_it_rish \nhttps:\/\/t.co\/9xzUgOFFfE\n\nYoutube - https:\/\/t.co\/N468GwypB2\u2026","url":"https:\/\/t.co\/1zLptkIqrX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1zLptkIqrX","expanded_url":"http:\/\/breakthecodenow.blogspot.com","display_url":"breakthecodenow.blogspot.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9xzUgOFFfE","expanded_url":"http:\/\/instagram.com\/dev_it_rish\/","display_url":"instagram.com\/dev_it_rish\/","indices":[94,117]},{"url":"https:\/\/t.co\/N468GwypB2","expanded_url":"http:\/\/youtube.com\/channel\/UCYbvO","display_url":"youtube.com\/channel\/UCYbvO","indices":[129,152]}]}},"protected":false,"followers_count":559,"friends_count":21,"listed_count":27,"created_at":"Mon + Nov 26 07:52:54 +0000 2018","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33827,"lang":null,"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\/1203364293552427008\/_KFRXMoC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203364293552427008\/_KFRXMoC_normal.jpg","profile_link_color":"19CF86","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 11:18:02 +0000 2020","id":1222116618689490945,"id_str":"1222116618689490945","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/www.bytekid.com\" rel=\"nofollow\"\u003eJSAlways\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":983535377674891266,"id_str":"983535377674891266","name":"JS + Fairy\ud83d\udc7c","screen_name":"jsfairy","location":"","description":"JS + fairy delivers you the best of web development news on the internet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":17,"listed_count":27,"created_at":"Tue + Apr 10 02:41:22 +0000 2018","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47165,"lang":null,"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\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_link_color":"3362FE","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come + and join our team to bring Zammad even further forward! \n\nIt''s gonna be + amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, + Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | + Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri + Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"lang":null,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Jan 28 10:45:13 +0000 2020","id":1222108360364953601,"id_str":"1222108360364953601","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + 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":2474118319,"id_str":"2474118319","name":"Thorsten + Eckel","screen_name":"MrThorstenEckel","location":"","description":"Zammad + maintainer and community member. Happy hacking \/ frohes Schaffen!","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":45,"listed_count":1,"created_at":"Fri + May 02 14:31:56 +0000 2014","favourites_count":466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"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\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 10:44:12 +0000 2020","id":1222108106240466944,"id_str":"1222108106240466944","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/swana.me\" rel=\"nofollow\"\u003eLesson-1\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":1217810222984716289,"id_str":"1217810222984716289","name":"JavaScript + bot","screen_name":"mongoosepvt","location":"Compute engine\u2122","description":"Created + by\n@swashjunior \u2764\ud83d\udc96\nhttps:\/\/t.co\/pr3r0u9U2W\nwritten in + JavaScript","url":"https:\/\/t.co\/pr3r0u9U2W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[27,50]}]}},"protected":false,"followers_count":356,"friends_count":1,"listed_count":14,"created_at":"Thu + Jan 16 14:07:03 +0000 2020","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25758,"lang":null,"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\/1218685451793362945\/GfdbCX8w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Jan 27 16:06:49 +0000 2020","id":1221826904430346240,"id_str":"1221826904430346240","text":"RT + @BarackObama: Kobe was a legend on the court and just getting started in what + would have been just as meaningful a second act. To lose G\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack + Obama","id":813286,"id_str":"813286","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad + Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue + Aug 13 13:57:50 +0000 2019","favourites_count":42,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"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\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Jan 26 21:56:16 +0000 2020","id":1221552460768202756,"id_str":"1221552460768202756","text":"Kobe + was a legend on the court and just getting started in what would have been + just as meaningful a second act. To\u2026 https:\/\/t.co\/YlRRr9ng7Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YlRRr9ng7Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1221552460768202756","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":813286,"id_str":"813286","name":"Barack + Obama","screen_name":"BarackObama","location":"Washington, DC","description":"Dad, + husband, President, citizen.","url":"https:\/\/t.co\/93Y27HEnnX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/93Y27HEnnX","expanded_url":"https:\/\/www.obama.org\/","display_url":"obama.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":112881888,"friends_count":609242,"listed_count":228787,"created_at":"Mon + Mar 05 22:08:25 +0000 2007","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":15719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"77B0DC","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\/822547732376207360\/5g0FC8XX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813286\/1502508746","profile_link_color":"2574AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2E0F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":692561,"favorite_count":4148583,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":692561,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.045,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:18 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=D%C3%BCren&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:18 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:18 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1163492126556135425/puANjvZp_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '0' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:19 GMT + Last-Modified: + - Mon, 19 Aug 2019 16:43:14 GMT + Server: + - ECS (tpe/68A9) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/5 profile_images/1163492126556135425 + X-Cache: + - MISS + X-Connection-Hash: + - b76bd2ed91a44066b96fb3713dc830bc + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '128' + Content-Length: + - '2795' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:19 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=D%C3%BCren&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:19 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:19 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:19 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:19 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/508915774816149504/T4g--mOT_normal.jpeg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '233790' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:19 GMT + Last-Modified: + - Mon, 08 Sep 2014 09:50:30 GMT + Server: + - ECS (tpe/68A0) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/2 profile_images/508915774816149504 + X-Cache: + - HIT + X-Connection-Hash: + - c20c82c2eb58f26c8bb193866ffa6fcf + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '120' + Content-Length: + - '1807' + body: + encoding: ASCII-8BIT + string: !binary |- + /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH3gAJAAgACQA0AB5hY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/AABEIADAAMAMBIgACEQEDEQH/xAAYAAADAQEAAAAAAAAAAAAAAAAFBgcEA//EADEQAAIBAgQDBwIGAwAAAAAAAAECAwQRAAUSIQYHMRMUIkFRYXEVgQgWMlJiwUKRof/EABgBAAMBAQAAAAAAAAAAAAAAAAMEBQIB/8QAHxEAAQUAAgMBAAAAAAAAAAAAAQACAxEhBCISEzFx/9oADAMBAAIRAxEAPwBzhaONEVkA1La9t8LXFOfZZw/SyVlbLbroQfqc9LD74O67ou+4OIfzsp6rOeYuS8Ow1QVqnTYFTaNSTcn16E+2EgLOpr8QnNubXEktTK9JBBSQKxVB2Qe/zfz+MMXA/N008ndeKKFhHI4C1VOoso/kp6jz2xW+B+UvBdDwqaSsy968l2dppz4ySN9x0xJ+N+TEuWZnP9DrJVopASEn8RQ9Qob0xoTROGhbPHlGgqz5f9FzKIVVDW09RE63MsNmVh1sT5fGNE2WQKQ8TFRa9g+32xCPwy1NRS8aZ7kU8llFOzyKLBVKPpBP2JGL0avJr9lHWoWFge0QhT8HHHMo0ENrrGoQpuu25xLeIeF80Xm1ludQVTTxukqxCUjVEypfb1XxefpbFSg6WtjBn1TU0/d5IYY2VZgZJCPFGtja3te3+8BeXAYjxBvl2QfhmTmdTZ5BE81RLRSsFIqmQqD+4WUWHtvgLnNdzPzHNKiom7xFSrIUEcSIYwAbEm4/sYPZnn/E0E8krT1AqQb0wWnWSn0DoB4r6vM4XaDiTiFKeraWedka3btLCI49f8ACbm3XA2yCrTroxVWlblrlFdFzazzNGQJSRs8cm5N2YKbD777++LBI0IZOxRn09Ra1/bAjhSmEVJ2kkEMc8zGSRlHie52JPra23lg4bwqdSKDa+km5N+h26YaBJGqa4AHqtTXQAhbkjGXMNPd2MxBDA3xvkhkEYd7xp5Ejc/A88A68vVSvFE3gjuCB1LYNFxXvFkUEJ0zQUPr81+hU8lFmOVT11Pq1JJE24HoR/eFRq38w5tH3bLnocvhYOyObs9vXDhWVQqIDTysy1MSAHa+pT0Nv+HAzLqKTs3hiB1yOAXYdLmwGEIo3ez11tqjJL08rxMMTIp1xqFuL6R/jfyx37O8D3UljuMdMuWRYxBNTL2qKAAWvqsbXBHrjUlAtbA01JM0bN4CkpsA37b4rycCRut1SWclp+4v/2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA== + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:19 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:20 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:20 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1224427776654135297.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="ca8db5ad67ab2ff8d7e9453978aa7af6", + oauth_signature="KVwPd6LavD6jIuLek2FCVfK6je0%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796440", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2670' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:20 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:20 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079644039762192; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:20 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_QpgW5IUf4LYMtKVSgxlyiw=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:20 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - b33641fb2e72ef7f3887711c86674929 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '899' + X-Rate-Limit-Reset: + - '1580797340' + X-Response-Time: + - '124' + X-Transaction: + - 00cccbb0002de89b + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Mon Feb 03 20:21:45 +0000 2020","id":1224427776654135297,"id_str":"1224427776654135297","text":"@mrflix + I\u2019d prefer to pay for something but thanks though!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrflix","name":"Felix + Niklas","id":15217750,"id_str":"15217750","indices":[0,7]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot + for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427517869809666,"in_reply_to_status_id_str":"1224427517869809666","in_reply_to_user_id":15217750,"in_reply_to_user_id_str":"15217750","in_reply_to_screen_name":"mrflix","user":{"id":10737152,"id_str":"10737152","name":"Jack + McDade\u2728\ud83d\udcfa\u2728","screen_name":"jackmcdade","location":"Clifton + Park, NY","description":"REBEL & DREAMER. \nDesigner & developer. Creator + of @statamic & leader of the flat web. Stuck in the retroverse, making the + web weird again. Acts 20:24.","url":"https:\/\/t.co\/hLJlaGOKdD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hLJlaGOKdD","expanded_url":"https:\/\/jackmcdade.com","display_url":"jackmcdade.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6772,"friends_count":218,"listed_count":303,"created_at":"Fri + Nov 30 12:50:48 +0000 2007","favourites_count":11162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35724,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1064935675672305665\/xB3YuC60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064935675672305665\/xB3YuC60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10737152\/1534512550","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"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"}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:20 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:20 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:20 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1064935675672305665/xB3YuC60_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '501282' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:20 GMT + Last-Modified: + - Tue, 20 Nov 2018 17:35:05 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/2 profile_images/1064935675672305665 + X-Cache: + - HIT + X-Connection-Hash: + - dc2f0554c4e8d381a4b8dddb331ee0ed + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '109' + Content-Length: + - '2973' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:20 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:20 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:20 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1224427517869809666.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="1a244660e2f97a71bf345750e36e98c3", + oauth_signature="PArGPzilTQ9HzlIUQENIFYdSyZg%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796440", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2712' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:21 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:21 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079644120417217; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:21 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_L0kogBi44RZDUuRVJuDt4w=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:21 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 962314ad139bd7efb6b581060b1d327d + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '898' + X-Rate-Limit-Reset: + - '1580797340' + X-Response-Time: + - '124' + X-Transaction: + - 0022b3b0007f2a30 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Mon Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade + https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack + McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"source":"\u003ca + href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot + for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix + Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend + Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue + Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"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,"possibly_sensitive_appealable":false,"lang":"en"}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:21 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:21 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:21 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1224426978557800449.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="1839c84f7948a2fa6ef3a8b86f11fcb8", + oauth_signature="P34TG7JX5tOOMfc1zGXPQJB9n%2FY%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796441", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2604' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:21 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:21 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079644169456926; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:21 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_yi1It/3F2KszoRZr9LKSPg=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:21 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - e4fb6e6af304e2792218fcdac6b43062 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '897' + X-Rate-Limit-Reset: + - '1580797340' + X-Response-Time: + - '126' + X-Transaction: + - '0070158b000776af' + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Mon Feb 03 20:18:35 +0000 2020","id":1224426978557800449,"id_str":"1224426978557800449","text":"Lightweight + CRM recommendations? Just want something better than Intercom to keep track + of support contract details and that kind of thing.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot + for Mac\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":10737152,"id_str":"10737152","name":"Jack + McDade\u2728\ud83d\udcfa\u2728","screen_name":"jackmcdade","location":"Clifton + Park, NY","description":"REBEL & DREAMER. \nDesigner & developer. Creator + of @statamic & leader of the flat web. Stuck in the retroverse, making the + web weird again. Acts 20:24.","url":"https:\/\/t.co\/hLJlaGOKdD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hLJlaGOKdD","expanded_url":"https:\/\/jackmcdade.com","display_url":"jackmcdade.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6772,"friends_count":218,"listed_count":303,"created_at":"Fri + Nov 30 12:50:48 +0000 2007","favourites_count":11162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35724,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1064935675672305665\/xB3YuC60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064935675672305665\/xB3YuC60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10737152\/1534512550","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:21 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Clifton%20Park,%20NY&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:21 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:21 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1064935675672305665/xB3YuC60_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '501284' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:22 GMT + Last-Modified: + - Tue, 20 Nov 2018 17:35:05 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/2 profile_images/1064935675672305665 + X-Cache: + - MISS + X-Connection-Hash: + - dc2f0554c4e8d381a4b8dddb331ee0ed + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '109' + Content-Length: + - '2973' + body: + encoding: ASCII-8BIT + string: !binary |- + /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH4gALABQAEQAlAAlhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAADAQEBAQEAAAAAAAAAAAAEBQYDAgEHAP/EABoBAQACAwEAAAAAAAAAAAAAAAUDBgIEBwH/2gAMAwEAAhADEAAAASDwTbPdTy1vho7ZQUEAZtrILtCt2mEXzCP1nj10Dr/L1P8AQTjtPRwAvSIqjm9Mbvmi4xIRjOJ66WejqoaxIl51GONmFMKSQwu80ZeHkcF+xvVVPMWfRhkvl2dkj0krPGMro2F+q/LPeDFMFt/Is9ghjkW6obw+wvKqQptW0LgDRcl//8QAJRAAAgMAAQQCAgMBAAAAAAAAAgMAAQQRBRITIRQxEDIVJDRD/9oACAEBAAEFAggQJU54p24AJWpToUK6neECDdTyrqfNz1bC5jK5m7OcLXoKvIy5zcvQ2W1ly+bnR0WTRvvoo2aC/u8Tj8iNlYIFeaqpCvI/l7+F4VM17fgOn8eyNV2QiEa6ExDdHkYMzl5TfmUy3ZgIekJz5ha2u7ujiFjDAtWnpthnaTxI1rMHZXLNrfVGd0Zt998c2+5V2LUDTdmu9yZenTM292V+bcOtWmE2+PPC/WvVjzTFeNyepKzZS3YM+bF0EuNTyhu8U+ZLr0yvQNILPXqIh6hrXL06CnSvWt1x/ucS/o/q/q/2/wCg/fT/APS76L8f/8QAHhEAAgMBAQEAAwAAAAAAAAAAAAECBBEDIRITFCP/2gAIAQMBAT8B7ssE62rWXqjiyVbTr1H/AEnh1XnpdgnAdKRKwivNe6dJbp+v9kuArWlWzp+RPwpx+kSrnNnBtMqrShElBH//xAAfEQADAAICAgMAAAAAAAAAAAAAAQIDEQQSIUEiMTL/2gAIAQIBAT8By0ZTlZH6O2/sqS6ORk0jL5FPnZtFN6OU/kU9l4+y0Tx0i4OXGmTi9sqNMnGZEZpTKSL/AEI//8QAKhAAAgIABQIFBAMAAAAAAAAAAQIAEQMQEiExQVEgIjJhcRMzQpEEI2L/2gAIAQEABj8C8G87zysL7ZcieoZ7sJWvebjLXhWGgtz7zd2nJnqm7mcw43lrD4vvO2ZUdfCAOTFwK6b/ADNC209an/JjMVII5EZ1W9M4qc5WxoQ+V9aDUL4hYrYM1EV7QArv0hV73EbDUVe9k8zbIJ+I5hA8qiBV5brNJFe4mq1CfMY3e+kS5eY7SxEBJW74laPqAdRPyHzLB1X6hA4/XiBQWeRUTGXDB/q1ldVat65MGrAbHOLiUKaiooH97wY9M5xEUc/bNWS3z0Erppy+2rT7S5XAwJVhuCIzNjuxfYxq/kvbdviow+q1MoRvcDiDxnNfB//EACYQAQACAgEDBAIDAQAAAAAAAAEAESExQRBRcWGBofCR8SCxwdH/2gAIAQEAAT8h67WIsQRkVU7Su8g3Kwu/yT9j0m2wLhSprU0BKXwvEW7F2wM4YHDQoR2B7vSF6p7dJC2JipO6aGM9VuRgrcYdoGCqGspCEApUoIdTjLz3S4ycW5lQQbrGvjM5UlOPmYjBbFNj68z0X33mC8M/6OEbe1hCSrGPR9ZtG5XEtcHjv8yxYUIOveou5q9hjF5EpA1fKjPCKPQitZKe6nzFi3xoldoZa/xcJhR9GYRGZ4hq+n7zPq/crLIYpxiImd3AaVA8GC3Vmjj7MjuzGvPE1+40OzPZB2hNqejLKOm+IqkKAMsR46gyFegMRwaBachWH8eJUOaDFT6h4G5YcihMGxku2X6cag4iX5tKRgL4FXYaK1CgevC1VHjGMRHG8XwqPiiPF5EmOCv8V3yIdB8uf1df/9oADAMBAAIAAwAAABDCY+2aiaIgjMdoqN9TyJEfD3df/8QAIREBAAICAQQDAQAAAAAAAAAAAQARITHwQXGR4VGx0fH/2gAIAQMBAT8Q2TIYdTuXI1LGWXdZidO3t7+rlF4UgZUCMcEUtuq8x3c/h5uEE55xmEfjXO0S7qLNlFy8/IACqtRcnT1AuolkwhgbQ8yoM//EABwRAQEBAQEBAAMAAAAAAAAAAAEAESFBMRBRYf/aAAgBAgEBPxCHpIUoufq1fwE/9jpy714S3sjbKdPkqwmX94XCxMn1zlpw5HhHnCLG+oXmIiLkv//EACYQAQACAgECBgIDAAAAAAAAAAEAESExQVFhEHGBodHwkbHB4fH/2gAIAQEAAT8QJiakxCMoYj4odUIeHtVvUPAFygHpUFG6r0h7W8xP8RFpgImY6w81PVmMSrBVeAjFkpsK/V1YFTS9BgidYoWnrAI8yBEnvsy/3GYal2E3Q8kP4il+eN/xKj40E9A1sM/iHcQ6hf6jLAOuviDNGnb4lXjlaDdeUfBD8HxPpR8QUffmBccfe8CkgW1Wg3LkDCmSMrvvUJHt3d/JdQOSbtG6pyiYYDaUJCCqOBcHMfzHfwMYMNHJ/UqW0FmV0MSzItVbwYC7zDYNqREOMMHeHeUKyjhsKzChK6IrKFMHWWEjbCu2Rlzcwsatoa6Ql8Bq/pO8ffSAKExnBxdyisZrB9C8vrGLN50JydhKxXpRY75qIOGCWdXAZ6RnJlEwgL7vaGGe0fMZIDgrTCZZuzVR2n2+YIU0gUWOEGPLr8QQK28dwmIKPlqd8psZRJhaD2glgi3umkOO6Maarrt8jiIXdLLrPxEF0NjfxL/R+IKijWHUpFF8mSP+vTENgGV7Sk0+yqRSibKW7DiCLApQ7LwhbapRmD+8LluN5k4FrwEXUu1xiqjRrB2xLo6SbJ93+pmh1uFRRUJwFKE2ImRl2xpY8UBQEGgMwG/lCIxGMggaNBmIBVbcxy5MDkre44LGkvpGul67xF3jPM8k1T98/f4Rr85q82e/frwGnp4f/9kg + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:22 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1372613935/image_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '87030' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:22 GMT + Last-Modified: + - Thu, 04 Nov 2010 01:42:54 GMT + Server: + - ECS (tpe/68A9) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/8 profile_images/1372613935 + X-Cache: + - HIT + X-Connection-Hash: + - af7ab6266348ffac8cbb4aa67ea19c4e + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '16298' + body: + encoding: ASCII-8BIT + string: !binary |- + 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rUonA6AAk6Y7b/yHL1/ecb+I1l9t/wBGq5+y1/E6zWPalcFbdrMpsIYREgRxsiwmj5GE/wDdR6lR5J/uGj1BtO3a3Yz7jdzw0XMtaTEprii1vAJCmyVDaVKBCkkH0IPXSa51OvA+UfeNWwhpta77w7OLwNTtyqy6NVoyiy7sIwsDhTbqDlLiT0KVAg60OdffZ/eTvxyqWQbZrJwmWKCgfDZ7hPzFlR/JlEZzsJSfYax2V+dn/wBs6cIP9SFV/e8b/DXq4+5Wc/WjbXKOI1qP1JTZM6q5EQf5mIDyr71HCfuB99ZTIjrQspUkhSTg63m4fzXb/wC6mv8AD1j1b/Oi/uGu3n4MccZlO3L+bmuVuN6eKRed2US1aradNrUpqh1naJ9MJCmJCkkFKilQICgQPMMHjGcaavxW1v8A0CF/zH/trO3vmV92vWuP+XbctP/ZICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:22 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1223188240078909440.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="f0983cc8d2ccb9c7c917494a93e9b6bf", + oauth_signature="oEU2K3H3hQX9uVuasaZ%2ByWvMFcg%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796442", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2780' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:23 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:23 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079644317459299; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:23 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_rL1CgHU04UGVa6N+GgrTRg=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:23 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 3607feb94ada43c77a69b20f8a4b7acb + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '896' + X-Rate-Limit-Reset: + - '1580797340' + X-Response-Time: + - '128' + X-Transaction: + - 0077504c00a9eaac + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Fri Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq + Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail + verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik + Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU + Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon + Sep 05 06:47:21 +0000 2016","favourites_count":234,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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":false,"default_profile":false,"default_profile_image":false,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"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":"de"}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:23 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=F%C3%BCrth,%20Bayern&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:23 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:23 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/772697070549528579/HFxWLHRD_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '59427' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:23 GMT + Last-Modified: + - Mon, 05 Sep 2016 07:23:12 GMT + Server: + - ECS (tpe/68A4) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/1 profile_images/772697070549528579 + X-Cache: + - HIT + X-Connection-Hash: + - 3b5e4da44f99eb558e596bb3aa7e90f3 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '116' + Content-Length: + - '2617' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:23 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=F%C3%BCrth,%20Bayern&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:23 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:23 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:24 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:24 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '220798' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:24 GMT + Last-Modified: + - Tue, 26 Nov 2019 11:03:33 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1199283040230526976 + X-Cache: + - HIT + X-Connection-Hash: + - 4391708ad051bd65bc73f3a0d9a00ee2 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '116' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:24 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:24 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:24 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:24 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:24 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1094738873039704066/-lDgIqkO_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '59427' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:24 GMT + Last-Modified: + - Sun, 10 Feb 2019 23:22:21 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/9 profile_images/1094738873039704066 + X-Cache: + - HIT + X-Connection-Hash: + - 78fd6a3d400935ec9bf72ac2b088426e + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '114' + Content-Length: + - '3685' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:24 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Multan,%20Pakistan&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:24 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:25 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1223103807283810304.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="270a7a4eccf11544f9af28d85299205a", + oauth_signature="mYxomSx1sBr9ZxmdoYp%2F%2BnGdnSg%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796445", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '4774' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:25 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:25 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079644528238733; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:25 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_c1fhs9eqFg5/913EVJEC2w=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:25 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 5327d9a3ffb06b4f288d507a02c4791d + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '895' + X-Rate-Limit-Reset: + - '1580797340' + X-Response-Time: + - '125' + X-Transaction: + - 00f3aa8500266873 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Fri Jan 31 04:40:46 +0000 2020","id":1223103807283810304,"id_str":"1223103807283810304","text":"One + of the most disgusting videos i haf ever seen. A Chinese person a live a frog. + #China #coronarvirus https:\/\/t.co\/l81uDqdlOl","truncated":false,"entities":{"hashtags":[{"text":"China","indices":[83,89]},{"text":"coronarvirus","indices":[90,103]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1223103204050649088,"id_str":"1223103204050649088","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","url":"https:\/\/t.co\/l81uDqdlOl","display_url":"pic.twitter.com\/l81uDqdlOl","expanded_url":"https:\/\/twitter.com\/Nami_fight4life\/status\/1223103807283810304\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":544,"h":960,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"large":{"w":544,"h":960,"resize":"fit"}},"features":{}}]},"extended_entities":{"media":[{"id":1223103204050649088,"id_str":"1223103204050649088","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1223103204050649088\/pu\/img\/B8k8fYDewy8NedsU.jpg","url":"https:\/\/t.co\/l81uDqdlOl","display_url":"pic.twitter.com\/l81uDqdlOl","expanded_url":"https:\/\/twitter.com\/Nami_fight4life\/status\/1223103807283810304\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":544,"h":960,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"large":{"w":544,"h":960,"resize":"fit"}},"video_info":{"aspect_ratio":[17,30],"duration_millis":54518,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/320x564\/E9_ZjFgFnwun6x9I.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/360x634\/4c_uXMtdSyZ1SxVu.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/vid\/544x960\/AzGc7uMNSi0MYPkw.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1223103204050649088\/pu\/pl\/wV6_mmLI-ktcCFXX.m3u8?tag=10"}]},"features":{},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + 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":2519467770,"id_str":"2519467770","name":"#EndAnimalSacrifices + \ud83c\uddee\ud83c\uddf3","screen_name":"Nami_fight4life","location":"Obviously + somewhere on Earth","description":"#Anipal Share -\u00bbWorld along with other + living beings in peace+harmony #BeUnique #EnjoyLittleThings #StayStrong #Equality4All + #Voice4Voiceless #SaveLives #UCC","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3008,"friends_count":3020,"listed_count":78,"created_at":"Sat + May 24 04:37:39 +0000 2014","favourites_count":23188,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":52946,"lang":null,"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\/1218882247870353408\/MkRU56G4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218882247870353408\/MkRU56G4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2519467770\/1482148273","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":51,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Obviously%20somewhere%20on%20Earth&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:25 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:25 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1218882247870353408/MkRU56G4_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '146377' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:25 GMT + Last-Modified: + - Sun, 19 Jan 2020 13:03:48 GMT + Server: + - ECS (tpe/68A0) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/1 profile_images/1218882247870353408 + X-Cache: + - HIT + X-Connection-Hash: + - 73d106552eb5d9300d9ad791118d59b4 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '107' + Content-Length: + - '3151' + body: + encoding: ASCII-8BIT + string: !binary |- + /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH5AABABMADQAFADBhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMABQMEBAQDBQQEBAUFBQYHDAgHBwcHDwsLCQwRDxISEQ8RERMWHBcTFBoVEREYIRgaHR0fHx8TFyIkIh4kHB4fHv/bAEMBBQUFBwYHDggIDh4UERQeHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHv/CABEIAEkASQMBIgACEQEDEQH/xAAbAAACAgMBAAAAAAAAAAAAAAACAwQFAQYHAP/EABgBAAMBAQAAAAAAAAAAAAAAAAACAwEE/9oADAMBAAIQAxAAAAHlrFsXUJmnm1/p4hCweHVYn7C6fXM5rSmV7DX1UkKJGEsWmGCUGySqeWEqCaAGvsYgJxv5TbnPrCC62uElORxUYd3qE93uup7FrHB36xr97r3Zyy2wCaDWwnmtErLW6GvQ+gTpzWqzmqf/xAApEAABBAEDAwMEAwAAAAAAAAABAAIDBBEFEhMQFCEjJDIGFSAiMTVB/9oACAEBAAEFAoeAs9sHzbN2V5XleV5XlZKhZXc3ZUW2ruYyrscKuH9vsR61e54T3OWCyRIZ08zsEry96PWHg4y2sD6Bb7UMf26lMJCKyFlUO64HSW8GSfZ9wtBr7tl6z0d1rlhZiIMLQjNVRlqbpXRuk0rSoeC9XphtiHYVBYkjiE0zhyvALWpzWhuDmszFG0SrQ9NRB2wCROP7f41B2DIG2tK1iCANuYZFlRluMx7cRZLYUBFgRuK+nbTJKGoU5eTUZWySfgP4g+ZUfz1z+s6f/8QAIBEAAgEEAQUAAAAAAAAAAAAAAAERAhIhUTEDECBBYf/aAAgBAwEBPwG17LXsgkkTwSVZ9+VlXZ1EPYjinB1OS0j6JFziCT//xAAjEQACAQIFBQEAAAAAAAAAAAAAAQIRIRASEzFhAyAyUaFB/9oACAECAQE/AdVK1BzXozcYuN9vhl4+EFT87tSNaYORR+xEfK509jKU5EhxuJH/xAAzEAABAwIDBQUGBwAAAAAAAAABAAIRAyEEEjEiI0FRYRATIDIzFCVxcpGhMFKBkqLh8P/aAAgBAQAGPwLeVHtd0XnqubC3TnEdVqVqtVqtStStSt7Uc13wV6tT6IbypHHZUurPB5QjlfUPKyOQvzdfCO77ot4B0IN3F7cOSa4NokX5InLQaJ6FOqZqccYWY+EZ6dQuvovTrohja39qclaUMtKrY3krYY5p6+HdYmmxomxKdOPoujaiUHDG09na0/3NRn46wjmqTLcptw8QzYR9TqOKPu+rmjrCn2B+Wyvg/wCZQPshiPz6qadPI2NJlNxGMk5hLWdEQ2kI+Clvl7IZiMgvZGcW69oKgYnVeqFIqBxUDUqjnG02k0GecI6J449kiiHdV6P2RtHbPFNqBxh7QQVRayrJDb3v+q+3ZtPc1Car16jvovVd+1eZ0rSEzAOeGVaYPdu5ou75w52CDGeVvH8BnzI/J2//xAAmEAACAgIBAwQDAQEAAAAAAAABEQAhMUFRYXGREIGh4bHR8MHx/9oACAEBAAE/IdrQ8+0qdiFF19xIV+zzjfZHzeZ3PMfJ5hP2I/tT/oTNDabcATZ6VgTd2Cq17wpKchLQQdClP9QXOGAegeigMEA2GBt5izBqH+Lg0YYPlA1BQ8gEtwjTxqEyQTwEJqEIUp7zBGYk6I1FYtNgMX8TBOrIPshIhEPXtmMPAlVagjdbalDj0FGfRQL5ZwGyQusMMMBgs8VXT5lEGgBEb/bzBhc23doQd05eShIUiZYhkRGKGMOy2jLkRiQeTQFmBnOCpPAvs8zab4/rmFiBAwQ9nR/MNzlEebZcXgqoaGhMDXlhXEqs3TOo5dYJXHUdZSauIURn/ZaVUOcQ8jftGp0YgBAVF0AQBChCCQQouyuCCeAI8yoAIa+qCBKdwZRe8cQ5QqShBhgXDDLac/ylD3szDMOwCboz6EwLPViAiHyAIUbHkyWCsEagTiXdHWMTEGAPfYg/RJBcZbTZihmoZkmKZz4T8z4KDPp//9oADAMBAAIAAwAAABB+HnnO9AhgCiwSd9DzFyY3yrSL/8QAIBEBAAIBBAIDAAAAAAAAAAAAAQARoSFBseEx0SBRkf/aAAgBAwEBPxAbXlDwciKN8y0tBAXnqBqhz1HT26+QhYRK0YguuSFHSBPLct3BtP3jdu+Jf7Y9SveAQs6s/8QAJhEBAAIBAQUJAAAAAAAAAAAAAQARITFRcZGh8BAgQWGBwdHh8f/aAAgBAgEBPxDcHyfyaq3BgWsuEqVHW9G+4u7ej1lzOW2g9+86hBvJEFzzIUfSBDW4bTg32DZ1l9rl8SnxgF4IT//EACUQAQEAAgICAgIDAQEBAAAAAAERACExQVFhcYGRsRChwfDh8f/aAAgBAQABPxAj7yh1DSSbbu/QbyHPOnkkSnhbroMBuyUItPB4k+7gun8jBDh+2X/380f7sB8XljN/Zz/7vChyIkEg49Deen1aLZpBrXn59ce9AT3LQEujtvy9YDmWS1fHk/WAETV6hu78vuZyhGqRKSoaZfXHsA8YBfGI9Z/3WWGg9mBO0H1JjVxEQ9ld+DK9h2GVnWOO4iePBhoxiHgg9u9uuLjEXgBKQRDWzjTE3EwCiASR9YKVZ847mzyfwK+WLcggk2m+AeU95wWEFAgqDXbv0O7lMq7RJNkCQ37nw4SyOKT8Eizh8+soBKurMYNEbHfhwIMdj8G3fX1e5g5f1kJUT5zVx9ZHv8OChspQWqCGxXyecQDMAt2IFZEvA85U2gMkNAm0KE+3R0gaoLIAuoTx/mGhCloVejyu+eMEtCwT/cAg56wQNVw67+Mr3+MIGqqyNIdGpwW843ahFxZz9ix7XxlBJKrwIeQpRy04wOiEWJ5Nnjj036wP6nlA+iEPyeMjSYhAOR5dzrEiGoBW4OVNzC7DIhDu85ZT1EteHPrlwLA6X+BOr7fLhTPXgVhOJVr24lJklw4APc1rx+crDqRiAAn7T6yMIQWnK3nrjBZ2EnKsD8uID0LCBI9iT6xABylGXKobplfq5PX8Y1SLcrW4l18z9Yj2vHxoT4v7xp0IfVqfOApeu8ghycCbTGtUafrNVcoI+hyjwOzFbsWdDk+X6wJuxsKu2egv5z6Y20WpgfGPCPc+Th+Li3C09RnzveCCOjp2e/nJ7dGodzZx84sPuq5cJAhBUUDhZZebcC4tWCTyzfeOG7XA/Kepn1/ifrnL7z+vn9Yzmz/q+Gf9DwZyfx//2SAgICAgICAgICAgICAgICAgICAgIA== + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Obviously%20somewhere%20on%20Earth&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:25 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:25 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:26 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:26 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '220800' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:26 GMT + Last-Modified: + - Tue, 26 Nov 2019 11:03:33 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1199283040230526976 + X-Cache: + - HIT + X-Connection-Hash: + - 4391708ad051bd65bc73f3a0d9a00ee2 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '116' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:26 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:26 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:26 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '220800' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:26 GMT + Last-Modified: + - Tue, 26 Nov 2019 11:03:33 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1199283040230526976 + X-Cache: + - HIT + X-Connection-Hash: + - 4391708ad051bd65bc73f3a0d9a00ee2 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '116' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:26 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:27 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:27 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '220801' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:27 GMT + Last-Modified: + - Tue, 26 Nov 2019 11:03:33 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1199283040230526976 + X-Cache: + - HIT + X-Connection-Hash: + - 4391708ad051bd65bc73f3a0d9a00ee2 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '116' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:27 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1121064385504534529/-Wgf9Ot2_bigger.png + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '76528' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/png + Date: + - Tue, 04 Feb 2020 06:07:27 GMT + Last-Modified: + - Wed, 24 Apr 2019 14:50:32 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/2 profile_images/1121064385504534529 + X-Cache: + - HIT + X-Connection-Hash: + - d794e5057dfcb8c176f39934751f5fec + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '110' + Content-Length: + - '4041' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:27 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '604350' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:28 GMT + Last-Modified: + - Mon, 10 Oct 2016 09:31:36 GMT + Server: + - ECS (tpe/68A9) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/785412960797745152 + X-Cache: + - HIT + X-Connection-Hash: + - c495a3ef02e4fc034e72fe60abf696fe + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '117' + Content-Length: + - '2617' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:28 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1222881209384161283.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="0845309cb9c27fc1ab21d39b7b4eec23", + oauth_signature="vuGxDfvE5VlqDoEhKQecDdpslgQ%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796448", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2970' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:28 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:28 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079644848815779; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:28 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_AcgGvkyqZMxPuXzd/80cSA=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:28 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - dfeb647881f0c2d4fd8b5bb70434d07c + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '894' + X-Rate-Limit-Reset: + - '1580797340' + X-Response-Time: + - '137' + X-Transaction: + - 00ab4bde005cb1b6 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Thu Jan 30 13:56:15 +0000 2020","id":1222881209384161283,"id_str":"1222881209384161283","text":"@heyscrumpy + what\u2019s with you guys & girls? @zammadhq @MrThorstenEckel","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[0,11]},{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[46,55]},{"screen_name":"MrThorstenEckel","name":"Thorsten + Eckel","id":2474118319,"id_str":"2474118319","indices":[56,72]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222872891320143878,"in_reply_to_status_id_str":"1222872891320143878","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":281991630,"id_str":"281991630","name":"hans + \ud83d\udc40","screen_name":"hanspagel","location":"Berlin","description":"Oh, + ok. Co-founded @heyscrumpy and @_ueberdosis \ud83e\udd13\n\nReleased https:\/\/t.co\/UFnxb5cuTv + for macOS","url":"http:\/\/t.co\/CkBzEC3gDT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CkBzEC3gDT","expanded_url":"http:\/\/hanspagel.com","display_url":"hanspagel.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UFnxb5cuTv","expanded_url":"http:\/\/mouseless.app","display_url":"mouseless.app","indices":[61,84]}]}},"protected":false,"followers_count":1372,"friends_count":108,"listed_count":38,"created_at":"Thu + Apr 14 11:03:47 +0000 2011","favourites_count":13597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"222222","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\/775801870518456320\/a-UapAbd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281991630\/1543598367","profile_link_color":"888888","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDEDED","profile_text_color":"141414","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":false,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"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,"lang":"en"}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:28 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:28 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:28 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/775801870518456320/a-UapAbd_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '91561' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:28 GMT + Last-Modified: + - Tue, 13 Sep 2016 21:00:34 GMT + Server: + - ECS (tpe/68A4) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/1 profile_images/775801870518456320 + X-Cache: + - HIT + X-Connection-Hash: + - d1623eb5644d8a6924acde0eef38c47b + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '110' + Content-Length: + - '2795' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:28 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:28 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:28 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1222872891320143878.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9a015e27bda3228c0dfd24d91b42e81d", + oauth_signature="fQBcSbPWXxnrtavdbprC8Zw5Azs%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796449", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2903' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:29 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:29 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079644924464551; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:29 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_9+Br9A61XrqTbFxPH7rLGg=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:29 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 3a440e7e126060138b069e2c9000fc80 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '893' + X-Rate-Limit-Reset: + - '1580797340' + X-Response-Time: + - '133' + X-Transaction: + - 00df0593008cfe0d + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Thu Jan 30 13:23:11 +0000 2020","id":1222872891320143878,"id_str":"1222872891320143878","text":"I + haven\u2019t seen Tweets, articles or books about doing support for small + companies & indie businesses. Have you?\n\nWou\u2026 https:\/\/t.co\/e1cwhjvxEe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/e1cwhjvxEe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222872891320143878","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":281991630,"id_str":"281991630","name":"hans + \ud83d\udc40","screen_name":"hanspagel","location":"Berlin","description":"Oh, + ok. Co-founded @heyscrumpy and @_ueberdosis \ud83e\udd13\n\nReleased https:\/\/t.co\/UFnxb5cuTv + for macOS","url":"http:\/\/t.co\/CkBzEC3gDT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CkBzEC3gDT","expanded_url":"http:\/\/hanspagel.com","display_url":"hanspagel.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/UFnxb5cuTv","expanded_url":"http:\/\/mouseless.app","display_url":"mouseless.app","indices":[61,84]}]}},"protected":false,"followers_count":1372,"friends_count":108,"listed_count":38,"created_at":"Thu + Apr 14 11:03:47 +0000 2011","favourites_count":13597,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"222222","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\/775801870518456320\/a-UapAbd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775801870518456320\/a-UapAbd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281991630\/1543598367","profile_link_color":"888888","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDEDED","profile_text_color":"141414","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"can_media_tag":false,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:29 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:29 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:29 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/775801870518456320/a-UapAbd_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '91562' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:29 GMT + Last-Modified: + - Tue, 13 Sep 2016 21:00:34 GMT + Server: + - ECS (tpe/68A4) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/1 profile_images/775801870518456320 + X-Cache: + - HIT + X-Connection-Hash: + - d1623eb5644d8a6924acde0eef38c47b + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '110' + Content-Length: + - '2795' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:29 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1207773446798602240/B8GcNx4d_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '59418' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:30 GMT + Last-Modified: + - Thu, 19 Dec 2019 21:21:23 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/3 profile_images/1207773446798602240 + X-Cache: + - HIT + X-Connection-Hash: + - 7527d05c8bc7c0f33381b7e785c88bb0 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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YDUKI9jxgW5uwe/gIV6vpyul+OgP98VhCCYFYZfeeH43kRdJmPeUPv8A4nI2u3YDQN7nGHs75ZAJhWm7W314wUiLlWgmUDIdbMUGJiMhl14O8vv4fneOJG5xJdtyeps7OEJTaLNwC0onovL/ABCYhojOQJ224MlVLVhv5wPeA6uuMCqtJAUKRIomIjaPJX5yVyawdrHAWkBAL5Gz75+F44pNUQgNJsHSceEFLFGp0muhzpOZufQci5PecRgG9cjJwnvkBtDKDAx7UGSAAQAY4IEwVMDxX7kCXqY5KNsn1xh1jgO4hlsYGvaa5+N44Md5jo5wLGbV687wDtvZWdM3LCrOQikIktDTCwLpaM4rlRRJKUyhQFrE5J+IJhGLkjRxHWLjhsbxsB3gDD0HMzyzyChlXb0Ro7R9343kwugAEQHta/Z0dlOSgTUlWtYGgGc8E2yoLGIixLPlePYICpikdYY45qDukZQ7UcdL8c192QaZsAhrTp9ufjeTE09CmTVyhX24a6FikTaWwmcu6cAxC/ZVpew9uUY0f6xzH1BpIIGQN+vC5gIyHPxvKkkhFzCPSLTvlXLwRQQTi8xwsdxeJBQRI1gytMsqb03OAq9S1Havh+N5Se/HXA/3/Rzvn43h/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:30 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dresden,%20Germany&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:30 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:30 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/651386341171703809/t2jAQDHu_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '59422' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:30 GMT + Last-Modified: + - Tue, 06 Oct 2015 13:17:40 GMT + Server: + - ECS (tpe/68A2) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/1 profile_images/651386341171703809 + X-Cache: + - HIT + X-Connection-Hash: + - 9a3325add8fd54617c3964c5b7f17fd5 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '2973' + body: + encoding: ASCII-8BIT + string: !binary |- + /9j/4AAQSkZJRgABAQAAAQABAAD/4gKgSUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAH3wAKAAYADQATAClhY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtkZXNjAAABCAAAADhjcHJ0AAABQAAAAE53dHB0AAABkAAAABRjaGFkAAABpAAAACxyWFlaAAAB0AAAABRiWFlaAAAB5AAAABRnWFlaAAAB+AAAABRyVFJDAAACDAAAACBnVFJDAAACLAAAACBiVFJDAAACTAAAACBjaHJtAAACbAAAACRtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABwAAAAcAHMAUgBHAEIAIABiAHUAaQBsAHQALQBpAG4AAG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAMgAAABwATgBvACAAYwBvAHAAeQByAGkAZwBoAHQALAAgAHUAcwBlACAAZgByAGUAZQBsAHkAAAAAWFlaIAAAAAAAAPbWAAEAAAAA0y1zZjMyAAAAAAABDEoAAAXj///zKgAAB5sAAP2H///7ov///aMAAAPYAADAlFhZWiAAAAAAAABvlAAAOO4AAAOQWFlaIAAAAAAAACSdAAAPgwAAtr5YWVogAAAAAAAAYqUAALeQAAAY3nBhcmEAAAAAAAMAAAACZmYAAPKnAAANWQAAE9AAAApbcGFyYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW2Nocm0AAAAAAAMAAAAAo9cAAFR7AABMzQAAmZoAACZmAAAPXP/bAEMACAYGBwYFCAcHBwkJCAoMFA0MCwsMGRITDxQdGh8eHRocHCAkLicgIiwjHBwoNyksMDE0NDQfJzk9ODI8LjM0Mv/bAEMBCQkJDAsMGA0NGDIhHCEyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMv/AABEIAEkASQMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAAFBgMEBwIBCP/EAEAQAAEDAwIDAwkDCQkAAAAAAAECAwQABRESIQYxQQcTIhQyUWFxgZGhsRVSwRY0NVRicpLR8CQzNkJTVXOT8f/EABoBAAIDAQEAAAAAAAAAAAAAAAIDAQQFBgD/xAApEQACAgEDBAECBwAAAAAAAAABAgADEQQhMQUSQVFhExQVIiMykaHw/9oADAMBAAIRAxEAPwDtc4Wq9eUNpynQhpaRy1FnIOPb9Kodp8ds3KyX0EBm4QgVH9tIAUPmKtXa1Owr7IWJJdZkYUEaCC2RsBnlyzVlLK772ayESF99MsM0rDmnGWl7HA9HP4UsEcSWk0R5U3s8tUhT+EuxXITgxqCltklAPr22PrrEorztuu4WkltaFqTzxjOcfWtXs8dU7sT4ghZKXobypTWDgjSvxfIfOsllPeUyCtKdKtI3/aHWoVcE/MnbGY8QEtzbSlLzuhPeg4B3yUnHuykD300i6PPBlPcBK22G0rCT56gnAJ92PhSvwwI02yh9+QqM6xIzrSArIUORB2NaK1Yo09CXIsh6OcjdSQpKsDG1VUQ9xx4hp1fSaK/9ckZ+M+or9o1msUmJGu8NXczTHBdSBgLWkhKtQ9J5g9ayxC9MdKQRkKJz1Hvp57Rol4thTDc1KgvADyhKPC4c+acZwR6OvSlydwpeLVCakSYikNbEOp3BBIwfnyNWVz5kGyq0l6TlTxCnlX9kZQ4taY6dROknGokEZHXYfKqXl8f/AFfkaiff1xEORdQjuSV4C/O0jp8jUPlJ+6KfS5QHEVZWHOTGiFebpFtcODNluSbahZKWSo6UjBO3v6nlTB2W3Tvr09aZOkR7sw6wpJO4OCUZHsyKTJ6mgthkEJIAB1DfFdWK7pt3FkeeyQEMvoKdJ54wSfwoScnJkEx7sOq32PiFpVukSpTQXHeaQ5glKwGyrbn4kpOPXSPZuFG56IbWhJdWol9YXkBGMp29PStutUJNu7VLg/GKlsXSMH84ykA7ggdTqzv66QLxEVw1xZcGE93pW4FsKA0+BQCunLxE7dKCxu1SYticBQeTj+f9mO1h4TtjMFTSmWQ0hQLOlG6TjdSj/mJNe3Vcu3oMVgBJcWgpkBkOEJB8Q0k9R16UEsPEpQ+IfcyVLUfNSnPwPWupXEDkm5SIj7ehTDpSkawpSU45EjbOelZtLWM/ax2MDrWhp0lP3VYBZffnOxz8+cw8t6PLS4y+2FMrJGlQzt0rLe0qELLFZDZkLZkbJX3hKdjnByfOHpp/jyU7EqUSOlDOOLYbvwjLjxwhTySl1AUcbg9D0JBIrTnI9K1z03hTwxmU8Px0zYAadaW/p1LbbLhQnng7jfrRD7GH+wQP+xf86McDwEoauiFtqS20/wBy1rG4x52/t6UyeQp9Ir2J3IIxMom3QC7LS4lSMI0L5HB9tDoSlPyCDshvU4d+lS3e4uz7mt+W6X3FJCSvTpxjpj1VVadAQ+tkkAjRy5g/+UXG0EgYn1pwX5NJ4ctNzcWXJLFuQ1rCsAowD8elZh2mrlOcUOOS2kMrLKNCEqyNO+N+tScPcJzIrEC5q4oegMPsBtLaGdYaQtON8nHvx19VKPELk68cb3KE5MUsQUhnvUAEuBACQR03xn30Ng/LK1tbWgIssWy93hh1CLe6lLmMaicHFFLdY5ceQp9SytSyVL8WrUTzNJCItyZlgNvSkDPnONJGPnRyU7xFbO7dRP77Vv4m8fjVZURTKvUNF1LVKFDAge4+Ml4DDjOyRzqlNmvImwozK8KfkISUncaSd/lml638aXJkgXCC4U9XG0k/EUZi3GJduIIT8daHEBKlak9MU3M5r8Pv01wN6YH9SO0Nrhw1srKlK791SlKOSolZ3J9NXe+HpNVg5ree0gaS4rGOu9S+OmgzuV3UExkh9lnDFo4bcmcWpQ+4gd4673qkpa/ZTgjJ+p5VgMwwH77O+zYrkS2l/DTC3CsoSM8yeZ2J+VO3ap2jO8U3EQIKii0R15aHLv1/fUPfsOnOku3vQW2VlaXV946hxYwMpAC0rxv4h4hRnJEH9vMZeIRPt8qKpqfIEKQx4Ehw6QpA5Y9mDQfhabji1zvFZ8oaIyep2P4Gjpeh3LswzOuEVubHUhcdBcys4JSpJA3BI/CkKE+tiY3LRkKjrBJ9I/rNLO6yQwVwfU159MdIBKUlathtTPI4aWLDGmhBdUlPjbxn4VnCbiJKUOpd2UnKFDpR+LxTd5AajPXIpiJ590QFK9RpCgeZpEk7rCEJqDNSQ2EAHpilOU8OHeM21MgNsy2lNuEjYHor3HBq1JPk9xS5FU42gnmdgfdQHjCaLhfYLbLmlxlvWSOeonb6VKjeVOoBXpZW4M8Y4vkWy4OwbqwhZbWUrcZ5+0DqOtHvyxsv62f4DSvdm2rvIcdfUEuFWe8SN6D/AGVF/X0/Afzq39MynXae0d3MpyXu8Wgk+j6VCFFKkp5ADIOPnXLnNH7or17+9HsNeTYZjbDlpy+8p5ZJwM9EpxmpwdFtWerisfD+jVOrTn6NY9p+tLbxAbwIe4ZWtUNQKiQlR2HMD1U1W1DTshKftNTOeoxtSlwt5y/3vwqxL/Pj7aUw3l6tiqjEaeIrzb7VFSkvCTKz4QOZHpPopSgoekQJ95f3dUsISPbtt6hyoFN/STtMjX+E2f8AkV9aYFAImdrLWPaPZEGLWp5aWVEkqPmJOwHrq75Ex91P8NUIX50r9/8ACi9WoJ2n/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:30 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Dresden,%20Germany&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:30 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:30 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Islamabad&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:31 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:31 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1199283040230526976/hqPrCBIi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '220805' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:31 GMT + Last-Modified: + - Tue, 26 Nov 2019 11:03:33 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1199283040230526976 + X-Cache: + - HIT + X-Connection-Hash: + - 4391708ad051bd65bc73f3a0d9a00ee2 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '116' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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waBnSMwopvhYwVU00YZi2rXvTl4RCAWo44IC0K15JRugMvj9octIgpCAkALkgVoVfMYWUixDVPLMqg0RLcrlp1MNXpAgCGlqEv8AFS4bMWm0f9Qz833QqxgQfIkU+vH2H3l8Yb8I0dk10qMysU4LiPy5zkjNYBlKFUdWn2loLgcPIQhlHR1hlrQw6wxKiibAdPtBSMpGhxwzmYwKluvcWnADvehAlggNjV57lOYbcMAsdYKYFF+uP3G8BWzYJe7WyAHiKAFGkACwOiOKlQGqB1eiFx8J02PKrxKxeG0JbO964+mWZU1QesUAvb9NoaFaLArvdmcm86MGrRit66A3ehdSgJuTLK21FrgHNymBRIaxlOeVk3CIJyUGhTCi2mjsj5o6DkS10sQhjw5w49gfM7vx/uCFpo0jXhXCXVhoWqbfGMdy4ecfS2StfyjewDieLOtlJXpLCqyNmjwjGNDaS8IjCfkRG7BTbrzeuCCHZN0pi5y5OlvEdiq/ZP8AtymeWu0afJKuLTXWrPrZQlY6oa1TFdHO0qJdW4vVXNsWw2ITih/cIACoYSW94YLBktkVLJvZAOW9pqvyNEQAegHiDeGrax0R7cV/U+ee8+c4nzHCa/jr9Knzep8RxP5n9n8ACH//2SAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:31 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Munich,%20Germany&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:31 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:31 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/695741537964179461/2xwxUiGU_bigger.png + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '76635' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/png + Date: + - Tue, 04 Feb 2020 06:07:31 GMT + Last-Modified: + - Fri, 05 Feb 2016 22:49:23 GMT + Server: + - ECS (tpe/68A2) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/8 profile_images/695741537964179461 + X-Cache: + - HIT + X-Connection-Hash: + - 07e9c29bdb6caa8e860115725514fa1c + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '118' + Content-Length: + - '5465' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:31 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Munich,%20Germany&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:31 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:31 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1189466673532854272/ZZRN4sw8_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '237853' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Last-Modified: + - Wed, 30 Oct 2019 08:56:48 GMT + Server: + - ECS (tpe/68A1) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1189466673532854272 + X-Cache: + - HIT + X-Connection-Hash: + - b140b365ea73f0d34e1c7c5a2ad7cbc9 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '108' + Content-Length: + - '3863' + body: + encoding: ASCII-8BIT + string: !binary |- + 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vb5H8//EACQRAQACAQIFBQEAAAAAAAAAAAEAETEhURBBcYGhIGGRsfDB/9oACAEDAQE/ELMwGH7vLWu8B6FfBqg68/DrK2uz9xaBvAr3fExETlMr23+YFFMdD195QGvVD+sq5F54KZBjjc5iAplWppslnbn5l6wK9r+2K2bd39p24f/EACMRAQABAwMFAQEBAAAAAAAAAAERACExQVFhcYGRocHwENH/2gAIAQIBAT8Qzlg/Qc0ThubQp1WO1qJHVGFLbmvqj5gO5YnZNXqkUOaEC04OqSu2KAIBwMEGUqQUFHITm+aWFb4ieTD1LetqlkL3Hqa9yKC0uW5nccTQ0uys8p8MVZsS/PtMSNDqqNvfimRqELziL4qZBWQN9mdPjvQMho2JtOT70ouA8Aq8QgUYOEwTLPCn7/TBisfuW9IpGGkTC7qpd9HxV4JOlnmCohOA+6vf+f/EACcQAQABAwQBAwUBAQAAAAAAAAERACExQVFhcZGBofAQwdHh8SCx/9oACAEBAAE/EKdoI+HdWi31Fr85u/tS0aSxI6kLDhigwzVdtyMpxzNZQAtCoLAyRMLUboGH2i5IO6HMl9J06ibN/qp3isAEq020hZssAmp7MdvGMIguq4c0NN80nZItO6HhqEFOo6Fq5ASPhPMlEe2W81Fv6oLFWAQBny5gzktZG+JrjcTRGybn0hHEI5S/8MUaORSDLyYTtGPNTAfXmlwdB7/8U2ZEJxftO+XmoUM1JdIZUJLnK+xgPfmjROFGrJm9ufpouD6XKsa375o2QIza34AuelSb1Kgjhb2jMSz6UqYuLSZXopTXp5mgTb1jXdaztakYQl2XT9FGvRWc7bxQYqMDtZuOfOMU30FlooB5w/lS/DIVJT0+xQHFhEyLRKWYeK4fml4U+5DNmaYNoORiaJnk898YUhYkmZL5HE/QkHAgyqz1EUFggQ11HrW4Ax4/ihGglrKlIxma+afajaYDdIdlIAJS/wBihfSknpHJcp6O+aBsKVsZMjlr1WlROTJgC0aunrUE8sC51xFYlDmlLA/KN8jSCid3pvsK/kVM8QKGHqdY/tKplwmWjT8Vb/1EEtl0X42q2ZVzt7u7+5oiuhK1eS0vvSNmtQjHLZ8kmiHKTs9acX/VEBlFMFCnAt4qKM227U/NJlBXZtJ0AfLVHQeC76wN/wDtPhaZJvhdWqFBsaJH2eAeI3pNAEFjGozO/NXkuC2kuqht+monp3WVlcr9cmSw9x0eat8GIY2wpw0z1EVz4XxR8JNpE0VL3U57soSoELGzWtUobOl13Wr/AJayVkpg6/y//9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Tirana,%20Albania&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/show/1222108036795334657.json + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="fadbc0e65e0cd98a1bbd46262121c7af", + oauth_signature="vqic%2BIyQkpIlEzbY2VXidbD2CQ4%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796452", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '2781' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:32 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:32 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079645287432567; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:32 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_8MuLQGGHeQ0iKjjEyK3kwA=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:32 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 608ef1d33f94f7800d75e9f14fc86838 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '900' + X-Rate-Limit-Remaining: + - '892' + X-Rate-Limit-Reset: + - '1580797340' + X-Response-Time: + - '125' + X-Transaction: + - 00dc12c800f73e29 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"created_at":"Tue Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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,"can_media_tag":true,"followed_by":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:32 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/785412960797745152/wxdIvejo_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '604355' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:33 GMT + Last-Modified: + - Mon, 10 Oct 2016 09:31:36 GMT + Server: + - ECS (tpe/68A9) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/785412960797745152 + X-Cache: + - HIT + X-Connection-Hash: + - c495a3ef02e4fc034e72fe60abf696fe + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '117' + Content-Length: + - '2617' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:33 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=India&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:33 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:33 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1203364293552427008/_KFRXMoC_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '164030' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:33 GMT + Last-Modified: + - Sat, 07 Dec 2019 17:20:59 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/6 profile_images/1203364293552427008 + X-Cache: + - HIT + X-Connection-Hash: + - 73f0d65b4198134d08b055a8f32af592 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '118' + Content-Length: + - '3863' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:33 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=India&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:33 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:33 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1013540643988049920/y49Ifgdi_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '69311' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:34 GMT + Last-Modified: + - Sun, 01 Jul 2018 21:49:34 GMT + Server: + - ECS (tpe/68A3) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/2 profile_images/1013540643988049920 + X-Cache: + - HIT + X-Connection-Hash: + - b6abf8329d70ed402270f83f3a3d272d + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '108' + Content-Length: + - '2261' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:34 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin,%20Deutschland&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:34 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:34 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1095305778460798983/mA-tSgeW_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '180213' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:34 GMT + Last-Modified: + - Tue, 12 Feb 2019 12:55:02 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/9 profile_images/1095305778460798983 + X-Cache: + - HIT + X-Connection-Hash: + - 4f62d93a7d984d9f6c1bbbd4800d8953 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '117' + Content-Length: + - '3507' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:34 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Berlin,%20Deutschland&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:34 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:34 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/832141531255623681/D-mNs8yL_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '59425' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:35 GMT + Last-Modified: + - Thu, 16 Feb 2017 08:14:16 GMT + Server: + - ECS (tpe/68A4) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/8 profile_images/832141531255623681 + X-Cache: + - HIT + X-Connection-Hash: + - 8b1044a4643f6b81360bb50474f708f6 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '114' + Content-Length: + - '2617' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:35 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Compute%20engineTM&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:35 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=1 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:35 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1218685451793362945/GfdbCX8w_bigger.png + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '192603' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/png + Date: + - Tue, 04 Feb 2020 06:07:35 GMT + Last-Modified: + - Sun, 19 Jan 2020 00:01:48 GMT + Server: + - ECS (tpe/68A1) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/7 profile_images/1218685451793362945 + X-Cache: + - HIT + X-Connection-Hash: + - b894a9af26bc849bf813155bede4d87b + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '110' + Content-Length: + - '3685' + body: + encoding: ASCII-8BIT + string: !binary |- + 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 + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:35 GMT +- request: + method: get + uri: http://maps.googleapis.com/maps/api/geocode/json?address=Compute%20engineTM&sensor=true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - maps.googleapis.com + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Date: + - Tue, 04 Feb 2020 06:07:35 GMT + Pragma: + - no-cache + Expires: + - Fri, 01 Jan 1990 00:00:00 GMT + Cache-Control: + - no-cache, must-revalidate + Vary: + - Accept-Language + Access-Control-Allow-Origin: + - "*" + Server: + - mafe + Content-Length: + - '202' + X-Xss-Protection: + - '0' + X-Frame-Options: + - SAMEORIGIN + Server-Timing: + - gfet4t7; dur=2 + body: + encoding: ASCII-8BIT + string: | + { + "error_message" : "You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account", + "results" : [], + "status" : "REQUEST_DENIED" + } + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:35 GMT +- request: + method: get + uri: http://pbs.twimg.com/profile_images/1207773446798602240/B8GcNx4d_bigger.jpg + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Zammad User Agent + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Host: + - pbs.twimg.com + response: + status: + code: 200 + message: OK + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Content-Length + Age: + - '59424' + Cache-Control: + - max-age=604800, must-revalidate + Content-Type: + - image/jpeg + Date: + - Tue, 04 Feb 2020 06:07:36 GMT + Last-Modified: + - Thu, 19 Dec 2019 21:21:23 GMT + Server: + - ECS (tpe/68A8) + Strict-Transport-Security: + - max-age=631138519 + Surrogate-Key: + - profile_images profile_images/bucket/3 profile_images/1207773446798602240 + X-Cache: + - HIT + X-Connection-Hash: + - 7527d05c8bc7c0f33381b7e785c88bb0 + X-Content-Type-Options: + - nosniff + X-Response-Time: + - '115' + Content-Length: + - '3329' + body: + encoding: ASCII-8BIT + string: !binary |- + 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YDUKI9jxgW5uwe/gIV6vpyul+OgP98VhCCYFYZfeeH43kRdJmPeUPv8A4nI2u3YDQN7nGHs75ZAJhWm7W314wUiLlWgmUDIdbMUGJiMhl14O8vv4fneOJG5xJdtyeps7OEJTaLNwC0onovL/ABCYhojOQJ224MlVLVhv5wPeA6uuMCqtJAUKRIomIjaPJX5yVyawdrHAWkBAL5Gz75+F44pNUQgNJsHSceEFLFGp0muhzpOZufQci5PecRgG9cjJwnvkBtDKDAx7UGSAAQAY4IEwVMDxX7kCXqY5KNsn1xh1jgO4hlsYGvaa5+N44Md5jo5wLGbV687wDtvZWdM3LCrOQikIktDTCwLpaM4rlRRJKUyhQFrE5J+IJhGLkjRxHWLjhsbxsB3gDD0HMzyzyChlXb0Ro7R9343kwugAEQHta/Z0dlOSgTUlWtYGgGc8E2yoLGIixLPlePYICpikdYY45qDukZQ7UcdL8c192QaZsAhrTp9ufjeTE09CmTVyhX24a6FikTaWwmcu6cAxC/ZVpew9uUY0f6xzH1BpIIGQN+vC5gIyHPxvKkkhFzCPSLTvlXLwRQQTi8xwsdxeJBQRI1gytMsqb03OAq9S1Havh+N5Se/HXA/3/Rzvn43h/9kgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA= + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:36 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1221826904430346239&q=zammad&result_type=mixed + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="aeaf906f8767cadcf09c4c5a10532123", + oauth_signature="zsUNwbi7cqDERnuzS%2Faz%2Fztqxiw%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796456", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '272' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:36 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:36 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079645660684099; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:36 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_KyzX7TFtLloo2KN4Sox/Sg=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:36 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 480636c4358b5b3f4135db1aaf625a51 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '180' + X-Rate-Limit-Remaining: + - '178' + X-Rate-Limit-Reset: + - '1580797338' + X-Response-Time: + - '181' + X-Transaction: + - 00c549fc00aa1d57 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"statuses":[],"search_metadata":{"completed_in":0.07,"max_id":1221826904430346239,"max_id_str":"1221826904430346239","query":"zammad","refresh_url":"?since_id=1221826904430346239&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:36 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="58fd5ddd399a461ee8569ef9df88ee50", + oauth_signature="itBgKdu4ephlrJ7iZzQATIF1eHU%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796456", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '279' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:07:37 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:07:37 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079645701833137; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:07:37 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_G/zRB+RLggbfpaDVNKFV+Q=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:07:37 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - e5e2f313e2022fb301596865209d5d8a + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '180' + X-Rate-Limit-Remaining: + - '177' + X-Rate-Limit-Reset: + - '1580797338' + X-Response-Time: + - '119' + X-Transaction: + - 005b4ffc00e580a2 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"statuses":[],"search_metadata":{"completed_in":0.011,"max_id":1224575206770954240,"max_id_str":"1224575206770954240","query":"hash_tag1","refresh_url":"?since_id=1224575206770954240&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:07:37 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=zammad&result_type=mixed + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9cf95b79f5604737654cc3586a994cc2", + oauth_signature="eqPYzvtb60sqo3UCgYLHxYRaBJ4%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796567", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '124247' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:09:28 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:09:28 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079656793434467; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:09:28 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_bo02d/mRLZ3dsuphPy1YBw=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:09:28 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 28d46a1d9234538c161898fdeb32d5a6 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '180' + X-Rate-Limit-Remaining: + - '176' + X-Rate-Limit-Reset: + - '1580797338' + X-Response-Time: + - '242' + X-Transaction: + - 006af0130039d645 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"statuses":[{"created_at":"Mon Feb 03 21:11:50 +0000 2020","id":1224440380881428480,"id_str":"1224440380881428480","text":"@hallouberspace + l\u00e4uft zammad bei euch oder braucht das zu viele Ressourcen?\nW\u00e4re + nur ein Agent gleichzeitig. Danke \ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hallouberspace","name":"Uberspace + Support","id":971752295934423040,"id_str":"971752295934423040","indices":[0,15]}],"urls":[]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":971752295934423040,"in_reply_to_user_id_str":"971752295934423040","in_reply_to_screen_name":"hallouberspace","user":{"id":605754518,"id_str":"605754518","name":"Benedikt","screen_name":"_benrich","location":"D\u00fcren","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":113,"listed_count":2,"created_at":"Mon + Jun 11 21:18:54 +0000 2012","favourites_count":1190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":201,"lang":null,"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\/1163492126556135425\/puANjvZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163492126556135425\/puANjvZp_normal.jpg","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"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":"de"},{"created_at":"Mon + Feb 03 20:24:40 +0000 2020","id":1224428510225354753,"id_str":"1224428510225354753","text":"@jackmcdade + you can pay for it too \u2013 there\u2019s a hosted version: https:\/\/t.co\/QrFNUrAszo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack + McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/QrFNUrAszo","expanded_url":"https:\/\/zammad.com\/pricing","display_url":"zammad.com\/pricing","indices":[63,86]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot + for Mac\u003c\/a\u003e","in_reply_to_status_id":1224427776654135297,"in_reply_to_status_id_str":"1224427776654135297","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix + Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend + Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue + Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"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":"Mon + Feb 03 20:20:43 +0000 2020","id":1224427517869809666,"id_str":"1224427517869809666","text":"@jackmcdade + https:\/\/t.co\/F6gtITRgvK as an open source solution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackmcdade","name":"Jack + McDade\u2728\ud83d\udcfa\u2728","id":10737152,"id_str":"10737152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/F6gtITRgvK","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[12,35]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot + for Mac\u003c\/a\u003e","in_reply_to_status_id":1224426978557800449,"in_reply_to_status_id_str":"1224426978557800449","in_reply_to_user_id":10737152,"in_reply_to_user_id_str":"10737152","in_reply_to_screen_name":"jackmcdade","user":{"id":15217750,"id_str":"15217750","name":"Felix + Niklas","screen_name":"mrflix","location":"Berlin","description":"Frontend + Designer","url":"https:\/\/t.co\/p5OjmMtDY1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p5OjmMtDY1","expanded_url":"https:\/\/felixniklas.com","display_url":"felixniklas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":302,"listed_count":54,"created_at":"Tue + Jun 24 09:30:03 +0000 2008","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1598,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","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\/508915774816149504\/T4g--mOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508915774816149504\/T4g--mOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15217750\/1347996820","profile_link_color":"1B6E52","profile_sidebar_border_color":"3BFDB2","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"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":"Fri + Jan 31 15:56:15 +0000 2020","id":1223273797987508227,"id_str":"1223273797987508227","text":"@he_dfau + @zammadhq Schau mal hier: \nhttps:\/\/t.co\/GZ2xhchtLp\n\nevtl. kannst Du + da ein PR stellen mti Vorschl\u00e4gen. Opt\u2026 https:\/\/t.co\/6qyns6vxMC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"he_dfau","name":"Henrik + Elsner","id":772687544005824512,"id_str":"772687544005824512","indices":[0,8]},{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[9,18]}],"urls":[{"url":"https:\/\/t.co\/GZ2xhchtLp","expanded_url":"https:\/\/github.com\/zammad\/zammad\/blob\/develop\/app\/assets\/javascripts\/app\/lib\/app_post\/utils.coffee#L826","display_url":"github.com\/zammad\/zammad\/\u2026","indices":[36,59]},{"url":"https:\/\/t.co\/6qyns6vxMC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223273797987508227","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot + for Mac\u003c\/a\u003e","in_reply_to_status_id":1223188240078909440,"in_reply_to_status_id_str":"1223188240078909440","in_reply_to_user_id":772687544005824512,"in_reply_to_user_id_str":"772687544005824512","in_reply_to_screen_name":"he_dfau","user":{"id":114574459,"id_str":"114574459","name":"Johannes","screen_name":"frank_zabel","location":"","description":"mac, + coco, iPhone, Perl Coder\u2026Official grey market provider","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":402,"listed_count":15,"created_at":"Mon + Feb 15 21:53:34 +0000 2010","favourites_count":2398,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5123,"lang":null,"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\/1372613935\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372613935\/image_normal.jpg","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":false,"follow_request_sent":false,"notifications":false,"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":"de"},{"created_at":"Fri + Jan 31 12:05:12 +0000 2020","id":1223215653362028548,"id_str":"1223215653362028548","text":"RT + @ManUtd: This is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC + https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[49,54]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester + United","id":558797310,"id_str":"558797310","indices":[3,10]},{"screen_name":"B_Fernandes8","name":"Bruno + Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[32,45]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1223169045505007619,"source_status_id_str":"1223169045505007619","source_user_id":558797310,"source_user_id_str":"558797310","video_info":{"aspect_ratio":[1,1],"duration_millis":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":558797310,"id_str":"558797310","name":"Manchester + United","screen_name":"ManUtd","location":"Manchester, England","description":"Official + #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 + | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe + | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri + Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Jan 31 09:00:00 +0000 2020","id":1223169045505007619,"id_str":"1223169045505007619","text":"This + is his stage.\n\n@B_Fernandes8 \ud83c\uddf5\ud83c\uddf9 #MUFC https:\/\/t.co\/RguCXvPhLh","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[37,42]}],"symbols":[],"user_mentions":[{"screen_name":"B_Fernandes8","name":"Bruno + Fernandes","id":1123232834376933376,"id_str":"1123232834376933376","indices":[20,33]}],"urls":[],"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1223153384854781955,"id_str":"1223153384854781955","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPmFMw1XsAAllRz.jpg","url":"https:\/\/t.co\/RguCXvPhLh","display_url":"pic.twitter.com\/RguCXvPhLh","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1223169045505007619\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":30600,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/720x720\/YPBFrCmDnyVw0r5h.mp4?tag=13"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/320x320\/FM6Zc21TnvlHgK9J.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/vid\/480x480\/TOrvMv6VjUsqNhRH.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1223153384854781955\/pl\/CHz-jBANh5ODHY4O.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/ads.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads\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":558797310,"id_str":"558797310","name":"Manchester + United","screen_name":"ManUtd","location":"Manchester, England","description":"Official + #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 + | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe + | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri + Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27498,"favorite_count":95079,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27498,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Jan 31 10:16:16 +0000 2020","id":1223188240078909440,"id_str":"1223188240078909440","text":"@zammadhq + Hi Zammad-Team \u2013 wie w\u00e4re es mit nem erweitertem Filter beim Mail + verschicken. Bislang wird ja nochmal ge\u2026 https:\/\/t.co\/cNkktH3uMG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/cNkktH3uMG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1223188240078909440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"de","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":772687544005824512,"id_str":"772687544005824512","name":"Henrik + Elsner","screen_name":"he_dfau","location":"F\u00fcrth, Bayern","description":"DFAU + Dev","url":"https:\/\/t.co\/AlS4GfxFkb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AlS4GfxFkb","expanded_url":"http:\/\/www.dfau.de","display_url":"dfau.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":49,"listed_count":0,"created_at":"Mon + Sep 05 06:47:21 +0000 2016","favourites_count":234,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"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\/772697070549528579\/HFxWLHRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772697070549528579\/HFxWLHRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772687544005824512\/1497093261","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"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":"de"},{"created_at":"Fri + Jan 31 05:51:33 +0000 2020","id":1223121619561799682,"id_str":"1223121619561799682","text":"@Nami_fight4life + Omg.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nami_fight4life","name":"#EndAnimalSacrifices + \ud83c\uddee\ud83c\uddf3","id":2519467770,"id_str":"2519467770","indices":[0,16]}],"urls":[]},"metadata":{"iso_language_code":"und","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1223103807283810304,"in_reply_to_status_id_str":"1223103807283810304","in_reply_to_user_id":2519467770,"in_reply_to_user_id_str":"2519467770","in_reply_to_screen_name":"Nami_fight4life","user":{"id":2694949692,"id_str":"2694949692","name":"Zammad + Mustafa \ud83c\uddf5\ud83c\uddf0\ud83c\uddf5\ud83c\uddf0","screen_name":"M_ZAMMAD_KHAN","location":"Multan, + Pakistan","description":"","url":"https:\/\/t.co\/xEj6qKXjcM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xEj6qKXjcM","expanded_url":"https:\/\/www.facebook.com\/zammad.mustafa","display_url":"facebook.com\/zammad.mustafa","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1422,"friends_count":1402,"listed_count":1,"created_at":"Thu + Jul 31 06:49:25 +0000 2014","favourites_count":3428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1889,"lang":null,"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\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094738873039704066\/-lDgIqkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2694949692\/1481660142","profile_link_color":"7FDBB6","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":false,"follow_request_sent":false,"notifications":false,"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,"lang":"und"},{"created_at":"Thu + Jan 30 18:07:57 +0000 2020","id":1222944555894480898,"id_str":"1222944555894480898","text":"RT + @SportingCP_en: Take good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SportingCP_en","name":"Sporting + CP_en","id":761398686,"id_str":"761398686","indices":[3,17]},{"screen_name":"ManUtd","name":"Manchester + United","id":558797310,"id_str":"558797310","indices":[46,53]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":1222575912140537859,"source_status_id_str":"1222575912140537859","source_user_id":761398686,"source_user_id_str":"761398686"}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Jan 29 17:43:06 +0000 2020","id":1222575912140537859,"id_str":"1222575912140537859","text":"Take + good care of our boy, @ManUtd \ud83d\ude4f https:\/\/t.co\/AKvEJcnxc4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester + United","id":558797310,"id_str":"558797310","indices":[27,34]}],"urls":[],"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222575904704077824,"id_str":"1222575904704077824","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPd2Ts7WoAAbLXQ.jpg","url":"https:\/\/t.co\/AKvEJcnxc4","display_url":"pic.twitter.com\/AKvEJcnxc4","expanded_url":"https:\/\/twitter.com\/SportingCP_en\/status\/1222575912140537859\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":761398686,"id_str":"761398686","name":"Sporting + CP_en","screen_name":"SportingCP_en","location":"","description":"Official + English Sporting Clube de Portugal Twitter account! #SportingCP Portuguese + Twitter: @Sporting_CP","url":"https:\/\/t.co\/9XUoKHIGcg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9XUoKHIGcg","expanded_url":"http:\/\/www.sporting.pt\/en","display_url":"sporting.pt\/en","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52763,"friends_count":60,"listed_count":259,"created_at":"Thu + Aug 16 11:47:43 +0000 2012","favourites_count":1533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A7043","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1162012069991997440\/3QWpYofX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162012069991997440\/3QWpYofX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761398686\/1580384764","profile_link_color":"1A7043","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27798,"favorite_count":135828,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27798,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Jan 30 18:06:30 +0000 2020","id":1222944189534687232,"id_str":"1222944189534687232","text":"RT + @ManUtd: Bruno, meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester + United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}},"source_status_id":1222935963116232705,"source_status_id_str":"1222935963116232705","source_user_id":558797310,"source_user_id_str":"558797310"}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Jan 30 17:33:49 +0000 2020","id":1222935963116232705,"id_str":"1222935963116232705","text":"Bruno, + meet Ole \ud83d\ude01 https:\/\/t.co\/xNx9sT2OvP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222935949220380673,"id_str":"1222935949220380673","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EPi9xDRWAAEAphf.jpg","url":"https:\/\/t.co\/xNx9sT2OvP","display_url":"pic.twitter.com\/xNx9sT2OvP","expanded_url":"https:\/\/twitter.com\/ManUtd\/status\/1222935963116232705\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1252,"resize":"fit"},"medium":{"w":1200,"h":734,"resize":"fit"},"small":{"w":680,"h":416,"resize":"fit"}}}]},"metadata":{"iso_language_code":"et","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":558797310,"id_str":"558797310","name":"Manchester + United","screen_name":"ManUtd","location":"Manchester, England","description":"Official + #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 + | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe + | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri + Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14296,"favorite_count":93910,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":14296,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},{"created_at":"Thu + Jan 30 18:06:24 +0000 2020","id":1222944162296799239,"id_str":"1222944162296799239","text":"RT + @ManUtd: \ud83d\udd34 \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted + to announce the signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[20,25]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester + United","id":558797310,"id_str":"558797310","indices":[3,10]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Jan 30 17:02:20 +0000 2020","id":1222928041539776512,"id_str":"1222928041539776512","text":"\ud83d\udd34 + \ud83e\udd1d \ud83c\uddf5\ud83c\uddf9\n\n#MUFC is delighted to announce the + signing of Bruno Fernandes!","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[8,13]}],"symbols":[],"user_mentions":[],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter for Advertisers\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":558797310,"id_str":"558797310","name":"Manchester + United","screen_name":"ManUtd","location":"Manchester, England","description":"Official + #MUFC account. @ManUtd_ES \ud83c\uddea\ud83c\uddf8 | @ManUtd_ID \ud83c\uddee\ud83c\udde9 + | @ManUtd_JP \ud83c\uddef\ud83c\uddf5 | @ManUtd_MY \ud83c\uddf2\ud83c\uddfe + | @ManUtd_AR \u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u064a\u0648\u0646\u0627\u064a\u062a\u062f","url":"https:\/\/t.co\/Z9YJOB23fM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9YJOB23fM","expanded_url":"http:\/\/manutd.co\/OfficialApp","display_url":"manutd.co\/OfficialApp","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21031987,"friends_count":127,"listed_count":22417,"created_at":"Fri + Apr 20 15:17:43 +0000 2012","favourites_count":2387,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":57491,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203981391865798658\/MygEN3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558797310\/1580078965","profile_link_color":"B30000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43127,"favorite_count":145577,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":43127,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Jan 30 17:54:11 +0000 2020","id":1222941090417803264,"id_str":"1222941090417803264","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":1095164760683937793,"id_str":"1095164760683937793","name":"epicjobs","screen_name":"epicjobs","location":"","description":"Discover + jobs for design, product, ux, ui, engineering, pm, research, and more via + Twitter.","url":"https:\/\/t.co\/SEL0wCY0OD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEL0wCY0OD","expanded_url":"http:\/\/epicjobs.co","display_url":"epicjobs.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10704,"friends_count":3,"listed_count":59,"created_at":"Tue + Feb 12 03:36:40 +0000 2019","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"lang":null,"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\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121064385504534529\/-Wgf9Ot2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095164760683937793\/1558719255","profile_link_color":"333333","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Jan 30 14:56:38 +0000 2020","id":1222896407524212736,"id_str":"1222896407524212736","text":"@hanspagel + @heyscrumpy @mrthorsteneckel We don''t \ud83d\ude40 However, a look at our + agent statistics per SaaS instance shows\u2026 https:\/\/t.co\/uvcrf8VzUn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hanspagel","name":"hans + \ud83d\udc40","id":281991630,"id_str":"281991630","indices":[0,10]},{"screen_name":"heyscrumpy","name":"Scrumpy","id":899922417958760448,"id_str":"899922417958760448","indices":[11,22]},{"screen_name":"MrThorstenEckel","name":"Thorsten + Eckel","id":2474118319,"id_str":"2474118319","indices":[23,39]}],"urls":[{"url":"https:\/\/t.co\/uvcrf8VzUn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222896407524212736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/zammad.com\" rel=\"nofollow\"\u003eZammad Support\u003c\/a\u003e","in_reply_to_status_id":1222881209384161283,"in_reply_to_status_id_str":"1222881209384161283","in_reply_to_user_id":281991630,"in_reply_to_user_id_str":"281991630","in_reply_to_screen_name":"hanspagel","user":{"id":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"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,"lang":"en"},{"created_at":"Thu + Jan 30 07:48:15 +0000 2020","id":1222788601672601601,"id_str":"1222788601672601601","text":"RT + @SpaceX: Successful deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpaceX","name":"SpaceX","id":34743251,"id_str":"34743251","indices":[3,10]}],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251"}]},"extended_entities":{"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1222537702358171648,"source_status_id_str":"1222537702358171648","source_user_id":34743251,"source_user_id_str":"34743251","video_info":{"aspect_ratio":[16,9],"duration_millis":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false,"source_user":{"id":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, + CA","description":"SpaceX designs, manufactures and launches the world\u2019s + most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690311,"friends_count":106,"listed_count":25266,"created_at":"Thu + Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"}}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad + Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue + Aug 13 13:57:50 +0000 2019","favourites_count":42,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"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\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Jan 29 15:11:16 +0000 2020","id":1222537702358171648,"id_str":"1222537702358171648","text":"Successful + deployment of 60 Starlink satellites confirmed! https:\/\/t.co\/AHkQYB3uNV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1222537609706012673,"id_str":"1222537609706012673","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1222537609706012673\/img\/ds_w6dKB8IaTmHck.jpg","url":"https:\/\/t.co\/AHkQYB3uNV","display_url":"pic.twitter.com\/AHkQYB3uNV","expanded_url":"https:\/\/twitter.com\/SpaceX\/status\/1222537702358171648\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":15971,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/pl\/BYfu0YIpRXUNm89h.m3u8?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/640x360\/MEzs6pjkvE8mb1nY.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/480x270\/Izohb6ys8pIFWAUu.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1222537609706012673\/vid\/1280x720\/dhX1c_kuV-1dzd-k.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media + Studio\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":34743251,"id_str":"34743251","name":"SpaceX","screen_name":"SpaceX","location":"Hawthorne, + CA","description":"SpaceX designs, manufactures and launches the world\u2019s + most advanced rockets and spacecraft","url":"https:\/\/t.co\/SDnmlLwwoK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SDnmlLwwoK","expanded_url":"http:\/\/www.spacex.com","display_url":"spacex.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9690311,"friends_count":106,"listed_count":25266,"created_at":"Thu + Apr 23 21:53:30 +0000 2009","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":4580,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082744382585856001\/rH_k3PtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34743251\/1577678847","profile_link_color":"62616B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3741,"favorite_count":28636,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3741,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Jan 29 00:11:09 +0000 2020","id":1222311179307094018,"id_str":"1222311179307094018","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + 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":294510881,"id_str":"294510881","name":"Andr\u00e9 + Bauer","screen_name":"mono_tek","location":"Dresden, Germany","description":"Sysadmin + | Open source enthusiast | Caravan traveler | @Kubernetesio | @zammadhq | + Site reliability engineer @Kiwigrid | Tweets are my own (opinion)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":584,"listed_count":12,"created_at":"Sat + May 07 08:36:25 +0000 2011","favourites_count":1897,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1291,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651386341171703809\/t2jAQDHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651386341171703809\/t2jAQDHu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294510881\/1455978477","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":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 19:20:11 +0000 2020","id":1222237955588227075,"id_str":"1222237955588227075","text":"Bring + it on :\u2019) #TayyarHain #PSL2020 https:\/\/t.co\/drKzmbqnss","truncated":false,"entities":{"hashtags":[{"text":"TayyarHain","indices":[16,27]},{"text":"PSL2020","indices":[28,36]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/drKzmbqnss","expanded_url":"https:\/\/twitter.com\/thepslt20\/status\/1222185724927184898","display_url":"twitter.com\/thepslt20\/stat\u2026","indices":[37,60]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":144913897,"id_str":"144913897","name":"Zammad + Ahmad","screen_name":"Zammad","location":"Islamabad","description":"Communication + System Engineer, Business Graduate, Switched to 345 - Football is life & Climate + Change is real!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":218,"listed_count":8,"created_at":"Mon + May 17 16:57:42 +0000 2010","favourites_count":16004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9361,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199283040230526976\/hqPrCBIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144913897\/1500896463","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222185724927184898,"quoted_status_id_str":"1222185724927184898","quoted_status":{"created_at":"Tue + Jan 28 15:52:38 +0000 2020","id":1222185724927184898,"id_str":"1222185724927184898","text":"\u201cTayyar + Hain\u201d \n\n& this is how our cricket mela begins with the sound of + #HBLPSLV anthem\n\n #TayyarHain \ud83d\udd0a\n\nFull Video\u2026 https:\/\/t.co\/gUPeBu2TCY","truncated":true,"entities":{"hashtags":[{"text":"HBLPSLV","indices":[76,84]},{"text":"TayyarHain","indices":[94,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gUPeBu2TCY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222185724927184898","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media + Studio\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":3448716797,"id_str":"3448716797","name":"PakistanSuperLeague","screen_name":"thePSLt20","location":"Pakistan","description":"Official + account of the Pakistan Super League | https:\/\/t.co\/T8qeeQRuUz | https:\/\/t.co\/z9OaCGJLc1 + https:\/\/t.co\/nnDgNjF60C","url":"https:\/\/t.co\/30ynTBMZj5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/30ynTBMZj5","expanded_url":"http:\/\/psl-t20.com","display_url":"psl-t20.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/T8qeeQRuUz","expanded_url":"http:\/\/facebook.com\/thePSL","display_url":"facebook.com\/thePSL","indices":[48,71]},{"url":"https:\/\/t.co\/z9OaCGJLc1","expanded_url":"https:\/\/youtube.com\/pakistansuperleagueofficial","display_url":"youtube.com\/pakistansuperl\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/nnDgNjF60C","expanded_url":"https:\/\/instagram.com\/thepsl","display_url":"instagram.com\/thepsl","indices":[98,121]}]}},"protected":false,"followers_count":1373449,"friends_count":111,"listed_count":454,"created_at":"Wed + Aug 26 16:33:48 +0000 2015","favourites_count":247,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":10021,"lang":null,"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\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062770135994454017\/hiXhE6ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448716797\/1580277544","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":824,"favorite_count":4964,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Jan 28 12:46:22 +0000 2020","id":1222138849318621184,"id_str":"1222138849318621184","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":3354974812,"id_str":"3354974812","name":"stubble.IO","screen_name":"stubbleIO","location":"Munich, + Germany","description":"Curated Blog with Deals for Web Designers & Developers. + Imprint: https:\/\/t.co\/J3xWFPQ6zO","url":"https:\/\/t.co\/gm5VwxvzdK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gm5VwxvzdK","expanded_url":"http:\/\/stubble.IO","display_url":"stubble.IO","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/J3xWFPQ6zO","expanded_url":"http:\/\/stbb.li\/legal","display_url":"stbb.li\/legal","indices":[65,88]}]}},"protected":false,"followers_count":618,"friends_count":1088,"listed_count":12,"created_at":"Thu + Jul 02 11:45:19 +0000 2015","favourites_count":306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5593,"lang":null,"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\/695741537964179461\/2xwxUiGU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695741537964179461\/2xwxUiGU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3354974812\/1454714975","profile_link_color":"324B77","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 11:56:51 +0000 2020","id":1222126386334388225,"id_str":"1222126386334388225","text":"@zammadhq + Are you guys going to be at FOSDEM in Brussels this weekend? As Zammad users + ourselves we would love to c\u2026 https:\/\/t.co\/2OBpnTUyIL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/2OBpnTUyIL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222126386334388225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1222108036795334657,"in_reply_to_status_id_str":"1222108036795334657","in_reply_to_user_id":785412523193425920,"in_reply_to_user_id_str":"785412523193425920","in_reply_to_screen_name":"zammadhq","user":{"id":1168172858469732355,"id_str":"1168172858469732355","name":"Cloud68","screen_name":"Cloud68HQ","location":"Tirana, + Albania","description":"Reclaim your data from big tech!\n\nManaging Nextcloud, + Discourse & other open source instances for you, so you don''t have to. + Official ProtonMail partners.","url":"https:\/\/t.co\/eaUgbpg8RK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eaUgbpg8RK","expanded_url":"https:\/\/cloud68.co","display_url":"cloud68.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":227,"listed_count":1,"created_at":"Sun + Sep 01 14:44:59 +0000 2019","favourites_count":139,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49,"lang":null,"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\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189466673532854272\/ZZRN4sw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168172858469732355\/1572424995","profile_link_color":"1DA1F2","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":false,"follow_request_sent":false,"notifications":false,"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,"lang":"en"},{"created_at":"Tue + Jan 28 11:18:07 +0000 2020","id":1222116640747393026,"id_str":"1222116640747393026","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/breakthecodenow.blogspot.com\/\" rel=\"nofollow\"\u003ebytecode__\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":1066962987276103681,"id_str":"1066962987276103681","name":"ByteCode","screen_name":"byte_code_","location":"India","description":"A + bot by @rishabh_10_ \nRetweets #code #coding #programming and more.\nInstagram + - dev_it_rish \nhttps:\/\/t.co\/9xzUgOFFfE\n\nYoutube - https:\/\/t.co\/N468GwypB2\u2026","url":"https:\/\/t.co\/1zLptkIqrX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1zLptkIqrX","expanded_url":"http:\/\/breakthecodenow.blogspot.com","display_url":"breakthecodenow.blogspot.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/9xzUgOFFfE","expanded_url":"http:\/\/instagram.com\/dev_it_rish\/","display_url":"instagram.com\/dev_it_rish\/","indices":[94,117]},{"url":"https:\/\/t.co\/N468GwypB2","expanded_url":"http:\/\/youtube.com\/channel\/UCYbvO","display_url":"youtube.com\/channel\/UCYbvO","indices":[129,152]}]}},"protected":false,"followers_count":559,"friends_count":21,"listed_count":27,"created_at":"Mon + Nov 26 07:52:54 +0000 2018","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33827,"lang":null,"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\/1203364293552427008\/_KFRXMoC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203364293552427008\/_KFRXMoC_normal.jpg","profile_link_color":"19CF86","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 11:18:02 +0000 2020","id":1222116618689490945,"id_str":"1222116618689490945","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/www.bytekid.com\" rel=\"nofollow\"\u003eJSAlways\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":983535377674891266,"id_str":"983535377674891266","name":"JS + Fairy\ud83d\udc7c","screen_name":"jsfairy","location":"","description":"JS + fairy delivers you the best of web development news on the internet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":17,"listed_count":27,"created_at":"Tue + Apr 10 02:41:22 +0000 2018","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47165,"lang":null,"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\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013540643988049920\/y49Ifgdi_normal.jpg","profile_link_color":"3362FE","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 10:51:28 +0000 2020","id":1222109934923460608,"id_str":"1222109934923460608","text":"Come + and join our team to bring Zammad even further forward! \n\nIt''s gonna be + amazing, promised! https:\/\/t.co\/DMlrQdIEeE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DMlrQdIEeE","expanded_url":"https:\/\/twitter.com\/zammadhq\/status\/1222108036795334657","display_url":"twitter.com\/zammadhq\/statu\u2026","indices":[96,119]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":290111612,"id_str":"290111612","name":"Mr.Generation","screen_name":"Mr_Generation","location":"Berlin, + Deutschland","description":"Streaming\/Gaming | Light technican (Hobby) | + Webmaster of so much | IT-Admin | Photography | coffee junkie | Zammad | Berlin","url":"https:\/\/t.co\/sXMe6W0b5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXMe6W0b5t","expanded_url":"https:\/\/www.mrgeneration.de\/","display_url":"mrgeneration.de","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":116,"listed_count":2,"created_at":"Fri + Apr 29 19:07:04 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"lang":null,"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\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095305778460798983\/mA-tSgeW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290111612\/1549976386","profile_link_color":"404040","profile_sidebar_border_color":"FC58FC","profile_sidebar_fill_color":"FAEDF8","profile_text_color":"F26F9F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1222108036795334657,"quoted_status_id_str":"1222108036795334657","quoted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Jan 28 10:45:13 +0000 2020","id":1222108360364953601,"id_str":"1222108360364953601","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + 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":2474118319,"id_str":"2474118319","name":"Thorsten + Eckel","screen_name":"MrThorstenEckel","location":"","description":"Zammad + maintainer and community member. Happy hacking \/ frohes Schaffen!","url":"https:\/\/t.co\/m3UgsfNCXu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m3UgsfNCXu","expanded_url":"https:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":45,"listed_count":1,"created_at":"Fri + May 02 14:31:56 +0000 2014","favourites_count":466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"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\/832141531255623681\/D-mNs8yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832141531255623681\/D-mNs8yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474118319\/1487233103","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 10:44:12 +0000 2020","id":1222108106240466944,"id_str":"1222108106240466944","text":"RT + @zammadhq: Good morning! Come to our Global Office. And stay where your heart + is. We are looking for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\ud83d\udc68\u200d\ud83c\udf3e\ud83d\udc68\u200d\ud83c\udf73\ud83e\uddb9\u200d\u2640\ufe0f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zammadhq","name":"Zammad + HQ","id":785412523193425920,"id_str":"785412523193425920","indices":[3,12]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/swana.me\" rel=\"nofollow\"\u003eLesson-1\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":1217810222984716289,"id_str":"1217810222984716289","name":"JavaScript + bot","screen_name":"mongoosepvt","location":"Compute engine\u2122","description":"Created + by\n@swashjunior \u2764\ud83d\udc96\nhttps:\/\/t.co\/pr3r0u9U2W\nwritten in + JavaScript","url":"https:\/\/t.co\/pr3r0u9U2W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/pr3r0u9U2W","expanded_url":"http:\/\/www.swana.me","display_url":"swana.me","indices":[27,50]}]}},"protected":false,"followers_count":356,"friends_count":1,"listed_count":14,"created_at":"Thu + Jan 16 14:07:03 +0000 2020","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25761,"lang":null,"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\/1218685451793362945\/GfdbCX8w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218685451793362945\/GfdbCX8w_normal.png","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 28 10:43:56 +0000 2020","id":1222108036795334657,"id_str":"1222108036795334657","text":"Good + morning! Come to our Global Office. And stay where your heart is. We are looking + for creative colleagues! \ud83d\udc69\u200d\ud83d\ude92\u2026 https:\/\/t.co\/FOl3SnktR7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOl3SnktR7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1222108036795334657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web 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":785412523193425920,"id_str":"785412523193425920","name":"Zammad + HQ","screen_name":"zammadhq","location":"","description":"Helpdesk and Customer + Support made easy. Open Source for download or to go with SaaS. #zammad","url":"https:\/\/t.co\/XITyrXmhTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XITyrXmhTP","expanded_url":"http:\/\/zammad.com","display_url":"zammad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":577,"listed_count":19,"created_at":"Mon + Oct 10 09:31:52 +0000 2016","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"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\/785412960797745152\/wxdIvejo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785412960797745152\/wxdIvejo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785412523193425920\/1476097853","profile_link_color":"31B068","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Jan 27 16:06:49 +0000 2020","id":1221826904430346240,"id_str":"1221826904430346240","text":"RT + @BarackObama: Kobe was a legend on the court and just getting started in what + would have been just as meaningful a second act. To lose G\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack + Obama","id":813286,"id_str":"813286","indices":[3,15]}],"urls":[]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":1161275672796508160,"id_str":"1161275672796508160","name":"Zammad + Ali","screen_name":"ali_zammad","location":"","description":"No homo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue + Aug 13 13:57:50 +0000 2019","favourites_count":42,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"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\/1207773446798602240\/B8GcNx4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207773446798602240\/B8GcNx4d_normal.jpg","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":false,"follow_request_sent":false,"notifications":false,"translator_type":"none"},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Jan 26 21:56:16 +0000 2020","id":1221552460768202756,"id_str":"1221552460768202756","text":"Kobe + was a legend on the court and just getting started in what would have been + just as meaningful a second act. To\u2026 https:\/\/t.co\/YlRRr9ng7Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YlRRr9ng7Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1221552460768202756","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"metadata":{"iso_language_code":"en","result_type":"recent"},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + 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":813286,"id_str":"813286","name":"Barack + Obama","screen_name":"BarackObama","location":"Washington, DC","description":"Dad, + husband, President, citizen.","url":"https:\/\/t.co\/93Y27HEnnX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/93Y27HEnnX","expanded_url":"https:\/\/www.obama.org\/","display_url":"obama.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":112881949,"friends_count":609242,"listed_count":228787,"created_at":"Mon + Mar 05 22:08:25 +0000 2007","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":15719,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"77B0DC","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\/822547732376207360\/5g0FC8XX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822547732376207360\/5g0FC8XX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813286\/1502508746","profile_link_color":"2574AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2E0F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular"},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":692558,"favorite_count":4148583,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":692558,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}],"search_metadata":{"completed_in":0.091,"max_id":1224440380881428480,"max_id_str":"1224440380881428480","next_results":"?max_id=1221826904430346239&q=zammad&count=100&include_entities=1&result_type=mixed","query":"zammad","refresh_url":"?since_id=1224440380881428480&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:09:28 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&include_entities=1&max_id=1221826904430346239&q=zammad&result_type=mixed + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="7410ad8dffcb1424c6f77ec46b914605", + oauth_signature="iAP4GpRETQ8HDbs5Gmj7dWTZRh0%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796568", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '273' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:09:28 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:09:28 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079656877966283; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:09:28 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_ARCDxbX8FLNE9hnHrhkmTw=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:09:28 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 8bf48bdb333352d6cdd20ff4806bbbab + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '180' + X-Rate-Limit-Remaining: + - '175' + X-Rate-Limit-Reset: + - '1580797338' + X-Response-Time: + - '120' + X-Transaction: + - 00a1d15600695a9b + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"statuses":[],"search_metadata":{"completed_in":0.009,"max_id":1221826904430346239,"max_id_str":"1221826904430346239","query":"zammad","refresh_url":"?since_id=1221826904430346239&q=zammad&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:09:28 GMT +- request: + method: get + uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=hash_tag1&result_type=mixed + body: + encoding: UTF-8 + string: '' + headers: + User-Agent: + - TwitterRubyGem/6.2.0 + Authorization: + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9d0fac0820ed0f353ebc216e1d7d6b10", + oauth_signature="yhv7odp6G09X%2FoM4u4Dz8DCGLhA%3D", oauth_signature_method="HMAC-SHA1", + oauth_timestamp="1580796568", oauth_token="REDACTED", + oauth_version="1.0" + Connection: + - close + Host: + - api.twitter.com + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + Connection: + - close + Content-Disposition: + - attachment; filename=json.json + Content-Length: + - '278' + Content-Type: + - application/json;charset=utf-8 + Date: + - Tue, 04 Feb 2020 06:09:29 GMT + Expires: + - Tue, 31 Mar 1981 05:00:00 GMT + Last-Modified: + - Tue, 04 Feb 2020 06:09:29 GMT + Pragma: + - no-cache + Server: + - tsa_m + Set-Cookie: + - guest_id=v1%3A158079656911953573; Max-Age=63072000; Expires=Thu, 3 Feb 2022 + 06:09:29 GMT; Path=/; Domain=.twitter.com + - lang=en; Path=/ + - personalization_id="v1_g2vaZ2vWRME57HD7F1MWVA=="; Max-Age=63072000; Expires=Thu, + 3 Feb 2022 06:09:29 GMT; Path=/; Domain=.twitter.com + Status: + - 200 OK + Strict-Transport-Security: + - max-age=631138519 + X-Access-Level: + - read-write-directmessages + X-Connection-Hash: + - 6736ab562f0f0ee209994ecd260a1ca8 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Rate-Limit-Limit: + - '180' + X-Rate-Limit-Remaining: + - '174' + X-Rate-Limit-Reset: + - '1580797338' + X-Response-Time: + - '120' + X-Transaction: + - 00b82890000b03a1 + X-Twitter-Response-Tags: + - BouncerCompliant + X-Xss-Protection: + - '0' + body: + encoding: UTF-8 + string: '{"statuses":[],"search_metadata":{"completed_in":0.01,"max_id":1224575676411310081,"max_id_str":"1224575676411310081","query":"hash_tag1","refresh_url":"?since_id=1224575676411310081&q=hash_tag1&result_type=mixed&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}' + http_version: + recorded_at: Tue, 04 Feb 2020 06:09:29 GMT +recorded_with: VCR 4.0.0 diff --git a/test/data/vcr_cassettes/models/channel/with_valid_token_returns_true.yml b/test/data/vcr_cassettes/models/channel/with_valid_token_returns_true.yml index 493c1b8f7..209adde8f 100644 --- a/test/data/vcr_cassettes/models/channel/with_valid_token_returns_true.yml +++ b/test/data/vcr_cassettes/models/channel/with_valid_token_returns_true.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="8efb0d12349b48e6acaa2ec6ff224cc2", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="8efb0d12349b48e6acaa2ec6ff224cc2", oauth_signature="uABvZoC5sN%2F68E4oxp6Qk6SxO2Y%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795852", oauth_token="key", + oauth_timestamp="1543795852", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -524,9 +524,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="83003a1356235c21998dbe47bd20e034", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="83003a1356235c21998dbe47bd20e034", oauth_signature="KtBt4mbxUM9pQeEHXi%2BywugYuqk%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795853", oauth_token="key", + oauth_timestamp="1543795853", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -769,9 +769,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="bb5275ca035610773ca6172601e35be6", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="bb5275ca035610773ca6172601e35be6", oauth_signature="yk2RDPjsEnljxqdWfmCOjS01ylg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795854", oauth_token="key", + oauth_timestamp="1543795854", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -1227,9 +1227,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="756b2ebc88106059e7afdec3979455ed", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="756b2ebc88106059e7afdec3979455ed", oauth_signature="KYRdmzJiODGS%2BYqqmYUPhwq2Fwc%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795855", oauth_token="key", + oauth_timestamp="1543795855", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -1419,9 +1419,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="de1e719ccd92c862ad99062c09332301", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="de1e719ccd92c862ad99062c09332301", oauth_signature="ueto3kSV%2BcRxu%2FXOod5N4CqW%2BNk%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795855", oauth_token="key", + oauth_timestamp="1543795855", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -1664,9 +1664,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="4b3ceecc83d55c1b720580fb1e3d36db", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="4b3ceecc83d55c1b720580fb1e3d36db", oauth_signature="sYaGT3aj%2BUSwTMuTWouWuQti3BQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795856", oauth_token="key", + oauth_timestamp="1543795856", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -1964,9 +1964,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="9778307d17972ae3edc5b5d2a5530bb4", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9778307d17972ae3edc5b5d2a5530bb4", oauth_signature="qf8Acv3oYLzER%2BF53HL%2F7xQfbvM%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795857", oauth_token="key", + oauth_timestamp="1543795857", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -2213,9 +2213,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="7ff1412c085625c63956f13fee4a0066", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="7ff1412c085625c63956f13fee4a0066", oauth_signature="XTJJazMUukMF7V0QJysnt0RIbV0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795857", oauth_token="key", + oauth_timestamp="1543795857", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -3369,9 +3369,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="db0fdd3eedd9c9a4c4a7dea0f6dd3cc9", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="db0fdd3eedd9c9a4c4a7dea0f6dd3cc9", oauth_signature="5OrIGadCeuoU%2BpDkNkUYviu0awo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795861", oauth_token="key", + oauth_timestamp="1543795861", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -3509,9 +3509,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="12ed1f52923c07c7a35ea78d2d177e7d", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="12ed1f52923c07c7a35ea78d2d177e7d", oauth_signature="UEKkeqCiwZnRNZK2xL9yFh2jYLA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795862", oauth_token="key", + oauth_timestamp="1543795862", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -4496,9 +4496,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="df1d4b0020304d719b581ad2a89ac722", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="df1d4b0020304d719b581ad2a89ac722", oauth_signature="ZVjS8VWcWdYXZpr2I3ZX56DOWTE%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795865", oauth_token="key", + oauth_timestamp="1543795865", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -4744,9 +4744,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="2dbf57fffac364cfd3d3bb63b01ca49f", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="2dbf57fffac364cfd3d3bb63b01ca49f", oauth_signature="DoKz2xUY3qPs%2Bnscylkyemx7acY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795866", oauth_token="key", + oauth_timestamp="1543795866", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -5044,9 +5044,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="43788c0bf65af0ea0e0e59b029a98a58", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="43788c0bf65af0ea0e0e59b029a98a58", oauth_signature="8H%2Bw00OP0m9rjOpLRdQia%2BOjtIo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795866", oauth_token="key", + oauth_timestamp="1543795866", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -5296,9 +5296,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="813d8700f25ff78f741b2c778b312cf7", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="813d8700f25ff78f741b2c778b312cf7", oauth_signature="Ha0OSsfG5yFKzMdNbRHC2Fn9tKo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795867", oauth_token="key", + oauth_timestamp="1543795867", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -5859,9 +5859,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="6ba7598ee7171aa89d5172a75b5e7634", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="6ba7598ee7171aa89d5172a75b5e7634", oauth_signature="RrL7Yjl6GE4OJ4IJX4H5GiYLFJU%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795868", oauth_token="key", + oauth_timestamp="1543795868", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -6105,9 +6105,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="3a2fab4325efb72a9fe7f466fdb96910", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="3a2fab4325efb72a9fe7f466fdb96910", oauth_signature="%2BwYKPEqhsVvUK7IDnOSZpB4J1h0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795869", oauth_token="key", + oauth_timestamp="1543795869", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -6299,9 +6299,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="bab0a69fdb7b4718244cb9e3a86f28d4", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="bab0a69fdb7b4718244cb9e3a86f28d4", oauth_signature="WrbLQ6TcP7153IxnujSFyoJ462w%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795870", oauth_token="key", + oauth_timestamp="1543795870", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -6493,9 +6493,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="b88d83169c5ad58749312e180ccb580a", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b88d83169c5ad58749312e180ccb580a", oauth_signature="mwtfaPm2G4x5pRnOr79wWj%2F4UOc%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795870", oauth_token="key", + oauth_timestamp="1543795870", oauth_token="REDACTED", oauth_version="1.0" Connection: - close diff --git a/test/data/vcr_cassettes/models/channel/with_valid_token_sets_successful_status_attributes.yml b/test/data/vcr_cassettes/models/channel/with_valid_token_sets_successful_status_attributes.yml index 493c1b8f7..209adde8f 100644 --- a/test/data/vcr_cassettes/models/channel/with_valid_token_sets_successful_status_attributes.yml +++ b/test/data/vcr_cassettes/models/channel/with_valid_token_sets_successful_status_attributes.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="8efb0d12349b48e6acaa2ec6ff224cc2", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="8efb0d12349b48e6acaa2ec6ff224cc2", oauth_signature="uABvZoC5sN%2F68E4oxp6Qk6SxO2Y%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795852", oauth_token="key", + oauth_timestamp="1543795852", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -524,9 +524,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="83003a1356235c21998dbe47bd20e034", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="83003a1356235c21998dbe47bd20e034", oauth_signature="KtBt4mbxUM9pQeEHXi%2BywugYuqk%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795853", oauth_token="key", + oauth_timestamp="1543795853", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -769,9 +769,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="bb5275ca035610773ca6172601e35be6", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="bb5275ca035610773ca6172601e35be6", oauth_signature="yk2RDPjsEnljxqdWfmCOjS01ylg%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795854", oauth_token="key", + oauth_timestamp="1543795854", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -1227,9 +1227,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="756b2ebc88106059e7afdec3979455ed", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="756b2ebc88106059e7afdec3979455ed", oauth_signature="KYRdmzJiODGS%2BYqqmYUPhwq2Fwc%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795855", oauth_token="key", + oauth_timestamp="1543795855", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -1419,9 +1419,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="de1e719ccd92c862ad99062c09332301", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="de1e719ccd92c862ad99062c09332301", oauth_signature="ueto3kSV%2BcRxu%2FXOod5N4CqW%2BNk%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795855", oauth_token="key", + oauth_timestamp="1543795855", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -1664,9 +1664,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="4b3ceecc83d55c1b720580fb1e3d36db", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="4b3ceecc83d55c1b720580fb1e3d36db", oauth_signature="sYaGT3aj%2BUSwTMuTWouWuQti3BQ%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795856", oauth_token="key", + oauth_timestamp="1543795856", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -1964,9 +1964,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="9778307d17972ae3edc5b5d2a5530bb4", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="9778307d17972ae3edc5b5d2a5530bb4", oauth_signature="qf8Acv3oYLzER%2BF53HL%2F7xQfbvM%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795857", oauth_token="key", + oauth_timestamp="1543795857", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -2213,9 +2213,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="7ff1412c085625c63956f13fee4a0066", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="7ff1412c085625c63956f13fee4a0066", oauth_signature="XTJJazMUukMF7V0QJysnt0RIbV0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795857", oauth_token="key", + oauth_timestamp="1543795857", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -3369,9 +3369,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="db0fdd3eedd9c9a4c4a7dea0f6dd3cc9", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="db0fdd3eedd9c9a4c4a7dea0f6dd3cc9", oauth_signature="5OrIGadCeuoU%2BpDkNkUYviu0awo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795861", oauth_token="key", + oauth_timestamp="1543795861", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -3509,9 +3509,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="12ed1f52923c07c7a35ea78d2d177e7d", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="12ed1f52923c07c7a35ea78d2d177e7d", oauth_signature="UEKkeqCiwZnRNZK2xL9yFh2jYLA%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795862", oauth_token="key", + oauth_timestamp="1543795862", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -4496,9 +4496,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="df1d4b0020304d719b581ad2a89ac722", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="df1d4b0020304d719b581ad2a89ac722", oauth_signature="ZVjS8VWcWdYXZpr2I3ZX56DOWTE%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795865", oauth_token="key", + oauth_timestamp="1543795865", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -4744,9 +4744,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="2dbf57fffac364cfd3d3bb63b01ca49f", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="2dbf57fffac364cfd3d3bb63b01ca49f", oauth_signature="DoKz2xUY3qPs%2Bnscylkyemx7acY%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795866", oauth_token="key", + oauth_timestamp="1543795866", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -5044,9 +5044,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="43788c0bf65af0ea0e0e59b029a98a58", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="43788c0bf65af0ea0e0e59b029a98a58", oauth_signature="8H%2Bw00OP0m9rjOpLRdQia%2BOjtIo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795866", oauth_token="key", + oauth_timestamp="1543795866", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -5296,9 +5296,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="813d8700f25ff78f741b2c778b312cf7", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="813d8700f25ff78f741b2c778b312cf7", oauth_signature="Ha0OSsfG5yFKzMdNbRHC2Fn9tKo%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795867", oauth_token="key", + oauth_timestamp="1543795867", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -5859,9 +5859,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="6ba7598ee7171aa89d5172a75b5e7634", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="6ba7598ee7171aa89d5172a75b5e7634", oauth_signature="RrL7Yjl6GE4OJ4IJX4H5GiYLFJU%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795868", oauth_token="key", + oauth_timestamp="1543795868", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -6105,9 +6105,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="3a2fab4325efb72a9fe7f466fdb96910", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="3a2fab4325efb72a9fe7f466fdb96910", oauth_signature="%2BwYKPEqhsVvUK7IDnOSZpB4J1h0%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795869", oauth_token="key", + oauth_timestamp="1543795869", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -6299,9 +6299,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="bab0a69fdb7b4718244cb9e3a86f28d4", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="bab0a69fdb7b4718244cb9e3a86f28d4", oauth_signature="WrbLQ6TcP7153IxnujSFyoJ462w%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795870", oauth_token="key", + oauth_timestamp="1543795870", oauth_token="REDACTED", oauth_version="1.0" Connection: - close @@ -6493,9 +6493,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="b88d83169c5ad58749312e180ccb580a", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="b88d83169c5ad58749312e180ccb580a", oauth_signature="mwtfaPm2G4x5pRnOr79wWj%2F4UOc%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795870", oauth_token="key", + oauth_timestamp="1543795870", oauth_token="REDACTED", oauth_version="1.0" Connection: - close diff --git a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_body.yml b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_body.yml index bcb400879..7a712ac4f 100644 --- a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_body.yml +++ b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_body.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="some", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="some", oauth_signature="some%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795610", oauth_token="key", + oauth_timestamp="1543795610", oauth_token="REDACTED", oauth_version="1.0" Connection: - close diff --git a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_cc.yml b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_cc.yml index bcb400879..7a712ac4f 100644 --- a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_cc.yml +++ b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_cc.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="some", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="some", oauth_signature="some%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795610", oauth_token="key", + oauth_timestamp="1543795610", oauth_token="REDACTED", oauth_version="1.0" Connection: - close diff --git a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_content_type.yml b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_content_type.yml index bcb400879..7a712ac4f 100644 --- a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_content_type.yml +++ b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_content_type.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="some", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="some", oauth_signature="some%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795610", oauth_token="key", + oauth_timestamp="1543795610", oauth_token="REDACTED", oauth_version="1.0" Connection: - close diff --git a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_sender.yml b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_sender.yml index bcb400879..7a712ac4f 100644 --- a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_sender.yml +++ b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_sender.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="some", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="some", oauth_signature="some%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795610", oauth_token="key", + oauth_timestamp="1543795610", oauth_token="REDACTED", oauth_version="1.0" Connection: - close diff --git a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_subject.yml b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_subject.yml index bcb400879..7a712ac4f 100644 --- a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_subject.yml +++ b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_subject.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="some", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="some", oauth_signature="some%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795610", oauth_token="key", + oauth_timestamp="1543795610", oauth_token="REDACTED", oauth_version="1.0" Connection: - close diff --git a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_type.yml b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_type.yml index bcb400879..7a712ac4f 100644 --- a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_type.yml +++ b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_does_not_change_type.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="some", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="some", oauth_signature="some%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795610", oauth_token="key", + oauth_timestamp="1543795610", oauth_token="REDACTED", oauth_version="1.0" Connection: - close diff --git a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_appropriate_status_attributes_on_the_ticket_s_channel.yml b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_appropriate_status_attributes_on_the_ticket_s_channel.yml index bcb400879..7a712ac4f 100644 --- a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_appropriate_status_attributes_on_the_ticket_s_channel.yml +++ b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_appropriate_status_attributes_on_the_ticket_s_channel.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="some", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="some", oauth_signature="some%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795610", oauth_token="key", + oauth_timestamp="1543795610", oauth_token="REDACTED", oauth_version="1.0" Connection: - close diff --git a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_from_to_sender_s_twitter_handle.yml b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_from_to_sender_s_twitter_handle.yml index bcb400879..7a712ac4f 100644 --- a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_from_to_sender_s_twitter_handle.yml +++ b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_from_to_sender_s_twitter_handle.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="some", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="some", oauth_signature="some%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795610", oauth_token="key", + oauth_timestamp="1543795610", oauth_token="REDACTED", oauth_version="1.0" Connection: - close diff --git a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_message_id_to_tweet_id_https_twitter_com_status_id_.yml b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_message_id_to_tweet_id_https_twitter_com_status_id_.yml index bcb400879..7a712ac4f 100644 --- a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_message_id_to_tweet_id_https_twitter_com_status_id_.yml +++ b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_message_id_to_tweet_id_https_twitter_com_status_id_.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="some", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="some", oauth_signature="some%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795610", oauth_token="key", + oauth_timestamp="1543795610", oauth_token="REDACTED", oauth_version="1.0" Connection: - close diff --git a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_preferences_with_tweet_metadata.yml b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_preferences_with_tweet_metadata.yml index bcb400879..7a712ac4f 100644 --- a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_preferences_with_tweet_metadata.yml +++ b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_preferences_with_tweet_metadata.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="some", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="some", oauth_signature="some%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795610", oauth_token="key", + oauth_timestamp="1543795610", oauth_token="REDACTED", oauth_version="1.0" Connection: - close diff --git a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_to_to_recipient_s_twitter_handle.yml b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_to_to_recipient_s_twitter_handle.yml index bcb400879..7a712ac4f 100644 --- a/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_to_to_recipient_s_twitter_handle.yml +++ b/test/data/vcr_cassettes/models/ticket/article/auto-setting_of_outgoing_twitter_article_attributes_via_bg_jobs_sets_to_to_recipient_s_twitter_handle.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="some", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="some", oauth_signature="some%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795610", oauth_token="key", + oauth_timestamp="1543795610", oauth_token="REDACTED", oauth_version="1.0" Connection: - close diff --git a/test/data/vcr_cassettes/models/ticket/article/but_a_new_one_with_the_same_screen_name_exists_sets_appropriate_status_attributes_on_the_new_channel.yml b/test/data/vcr_cassettes/models/ticket/article/but_a_new_one_with_the_same_screen_name_exists_sets_appropriate_status_attributes_on_the_new_channel.yml index 66b357a35..78687b5d8 100644 --- a/test/data/vcr_cassettes/models/ticket/article/but_a_new_one_with_the_same_screen_name_exists_sets_appropriate_status_attributes_on_the_new_channel.yml +++ b/test/data/vcr_cassettes/models/ticket/article/but_a_new_one_with_the_same_screen_name_exists_sets_appropriate_status_attributes_on_the_new_channel.yml @@ -10,9 +10,9 @@ http_interactions: User-Agent: - TwitterRubyGem/6.2.0 Authorization: - - OAuth oauth_consumer_key="some", oauth_nonce="some", + - OAuth oauth_consumer_key="REDACTED", oauth_nonce="some", oauth_signature="some%3D", oauth_signature_method="HMAC-SHA1", - oauth_timestamp="1543795610", oauth_token="key", + oauth_timestamp="1543795610", oauth_token="REDACTED", oauth_version="1.0" Connection: - close