datasift 3.2.0 → 3.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/CHANGELOG.md +12 -0
- data/VERSION +1 -1
- data/examples/account_identity_token_eg.rb +6 -6
- data/examples/auth.rb +5 -3
- data/examples/cli.sh +1 -1
- data/examples/historics_eg.rb +5 -2
- data/examples/historics_preview_eg.rb +1 -1
- data/examples/managed_source_fb_eg.rb +129 -0
- data/examples/managed_source_ig_eg.rb +126 -0
- data/examples/pylon_eg.rb +36 -2
- data/lib/api/api_resource.rb +1 -1
- data/lib/cli.rb +2 -2
- data/lib/datasift.rb +14 -12
- data/lib/errors.rb +4 -0
- data/lib/historics.rb +2 -2
- data/test/datasift/historics_preview_api_test.rb +7 -3
- data/test/fixtures/cassettes/core/after_historic_dpu.json +1 -1
- data/test/fixtures/cassettes/core/balance_get.json +1 -1
- data/test/fixtures/cassettes/core/before_dpu.json +1 -1
- data/test/fixtures/cassettes/core/before_historic_dpu.json +1 -1
- data/test/fixtures/cassettes/core/compile_success.json +1 -1
- data/test/fixtures/cassettes/core/dpu_get_cost.json +1 -1
- data/test/fixtures/cassettes/core/dpu_throw_badrequest.json +1 -1
- data/test/fixtures/cassettes/core/historic_dpu.json +1 -1
- data/test/fixtures/cassettes/core/usage_success.json +1 -1
- data/test/fixtures/cassettes/core/validate_invalid_hash.json +1 -1
- data/test/fixtures/cassettes/core/validate_success_bool.json +1 -1
- data/test/fixtures/cassettes/core/validate_success_hash.json +1 -1
- data/test/fixtures/cassettes/preview/before_preview_create.json +1 -1
- data/test/fixtures/cassettes/preview/before_preview_get.json +1 -1
- data/test/fixtures/cassettes/preview/preview_create_success.json +1 -1
- data/test/fixtures/cassettes/preview/preview_get_success.json +1 -1
- data/test/fixtures/cassettes/push/after_push_create.json +1 -1
- data/test/fixtures/cassettes/push/after_push_get.json +1 -1
- data/test/fixtures/cassettes/push/after_push_log.json +1 -1
- data/test/fixtures/cassettes/push/after_push_pause.json +1 -1
- data/test/fixtures/cassettes/push/after_push_resume.json +1 -1
- data/test/fixtures/cassettes/push/after_push_stop.json +1 -1
- data/test/fixtures/cassettes/push/after_push_update.json +1 -1
- data/test/fixtures/cassettes/push/before_push_create.json +1 -1
- data/test/fixtures/cassettes/push/before_push_delete.json +1 -1
- data/test/fixtures/cassettes/push/before_push_get.json +1 -1
- data/test/fixtures/cassettes/push/before_push_log.json +1 -1
- data/test/fixtures/cassettes/push/before_push_pause.json +1 -1
- data/test/fixtures/cassettes/push/before_push_resume.json +1 -1
- data/test/fixtures/cassettes/push/before_push_stop.json +1 -1
- data/test/fixtures/cassettes/push/before_push_update.json +1 -1
- data/test/fixtures/cassettes/push/push_create.json +1 -1
- data/test/fixtures/cassettes/push/push_delete.json +1 -1
- data/test/fixtures/cassettes/push/push_get_by_id.json +1 -1
- data/test/fixtures/cassettes/push/push_log_with_id.json +1 -1
- data/test/fixtures/cassettes/push/push_pause.json +1 -1
- data/test/fixtures/cassettes/push/push_resume.json +1 -1
- data/test/fixtures/cassettes/push/push_stop.json +1 -1
- data/test/fixtures/cassettes/push/push_update.json +1 -1
- data/test/fixtures/cassettes/push/push_validate.json +1 -1
- metadata +4 -3
- data/examples/managed_source_eg.rb +0 -113
data/lib/api/api_resource.rb
CHANGED
@@ -11,7 +11,7 @@ module DataSift
|
|
11
11
|
@config = config
|
12
12
|
config[:api_host] = 'api.datasift.com' unless config.has_key?(:api_host)
|
13
13
|
config[:stream_host] = 'websocket.datasift.com' unless config.has_key?(:stream_host)
|
14
|
-
config[:api_version] = 'v1.
|
14
|
+
config[:api_version] = 'v1.2' unless config.has_key?(:api_version)
|
15
15
|
config[:enable_ssl] = true unless config.has_key?(:enable_ssl)
|
16
16
|
# Only SSLv3, TLSv1 and TLSv1.2 currently supported, TLSv1.2 preferred
|
17
17
|
# this is fixed in REST client and is scheduled for the 1.7.0 release
|
data/lib/cli.rb
CHANGED
@@ -104,13 +104,13 @@ end
|
|
104
104
|
def run_historics_command(c, command, p)
|
105
105
|
case command
|
106
106
|
when 'prepare'
|
107
|
-
c.historics.prepare(p['hash'], p['start'], p['end'], p['name'], opt(p['sources'], '
|
107
|
+
c.historics.prepare(p['hash'], p['start'], p['end'], p['name'], opt(p['sources'], 'tumblr'), opt(p['sample'], 10))
|
108
108
|
when 'start'
|
109
109
|
c.historics.start(p['id'])
|
110
110
|
when 'stop'
|
111
111
|
c.historics.stop(p['id'], opt(p['reason'], ''))
|
112
112
|
when 'status'
|
113
|
-
c.historics.status(p['start'], p['end'], opt(p['sources'], '
|
113
|
+
c.historics.status(p['start'], p['end'], opt(p['sources'], 'tumblr'))
|
114
114
|
when 'update'
|
115
115
|
c.historics.update(p['id'], p['name'])
|
116
116
|
when 'delete'
|
data/lib/datasift.rb
CHANGED
@@ -259,18 +259,20 @@ module DataSift
|
|
259
259
|
|
260
260
|
def self.handle_api_error(code, body)
|
261
261
|
case code
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
262
|
+
when 400
|
263
|
+
raise BadRequestError.new(code, body)
|
264
|
+
when 401
|
265
|
+
raise AuthError.new(code, body)
|
266
|
+
when 404
|
267
|
+
raise ApiResourceNotFoundError.new(code, body)
|
268
|
+
when 409
|
269
|
+
raise ConflictError.new(code, body)
|
270
|
+
when 410
|
271
|
+
raise GoneError.new(code, body)
|
272
|
+
when 429
|
273
|
+
raise TooManyRequestsError.new(code, body)
|
274
|
+
else
|
275
|
+
raise DataSiftError.new(code, body)
|
274
276
|
end
|
275
277
|
end
|
276
278
|
|
data/lib/errors.rb
CHANGED
data/lib/historics.rb
CHANGED
@@ -13,7 +13,7 @@ module DataSift
|
|
13
13
|
# query
|
14
14
|
# @param sample [Integer] Sample size of your Historics query
|
15
15
|
# @return [Object] API reponse object
|
16
|
-
def prepare(hash, start, end_time, name, sources = '
|
16
|
+
def prepare(hash, start, end_time, name, sources = '', sample = 100)
|
17
17
|
params = {
|
18
18
|
:hash => hash,
|
19
19
|
:start => start,
|
@@ -74,7 +74,7 @@ module DataSift
|
|
74
74
|
# Should be provided as a Unix timestamp
|
75
75
|
# @param sources [String] Comma separated list of data sources you wish to
|
76
76
|
# query
|
77
|
-
def status(start, end_time, sources = '
|
77
|
+
def status(start, end_time, sources = '')
|
78
78
|
params = { :start => start, :end => end_time, :sources => sources }
|
79
79
|
requires params
|
80
80
|
DataSift.request(:GET, 'historics/status', @config, params)
|
@@ -7,7 +7,7 @@ describe 'DataSift::HistoricsPreview' do
|
|
7
7
|
@data = OpenStruct.new
|
8
8
|
|
9
9
|
@data.valid_csdl = 'interaction.content contains "ruby"'
|
10
|
-
@data.sources = '
|
10
|
+
@data.sources = 'tumblr'
|
11
11
|
@data.parameters = 'language.tag,freqDist,5;interaction.id,targetVol,hour'
|
12
12
|
@data.start = '1398898800'
|
13
13
|
@data.end = '1398985200'
|
@@ -25,7 +25,9 @@ describe 'DataSift::HistoricsPreview' do
|
|
25
25
|
|
26
26
|
it 'can_create_historics_preview' do
|
27
27
|
VCR.use_cassette('preview/preview_create_success') do
|
28
|
-
response = @datasift.historics_preview.create(
|
28
|
+
response = @datasift.historics_preview.create(
|
29
|
+
@hash, @data.sources, @data.parameters, @data.start, @data.end
|
30
|
+
)
|
29
31
|
assert_equal STATUS.accepted, response[:http][:status]
|
30
32
|
end
|
31
33
|
end
|
@@ -38,7 +40,9 @@ describe 'DataSift::HistoricsPreview' do
|
|
38
40
|
before do
|
39
41
|
VCR.use_cassette('preview/before_preview_get') do
|
40
42
|
@hash = @datasift.compile(@data.valid_csdl)[:data][:hash]
|
41
|
-
@preview = @datasift.historics_preview.create(
|
43
|
+
@preview = @datasift.historics_preview.create(
|
44
|
+
@hash, @data.sources, @data.parameters, @data.start, @data.end
|
45
|
+
)
|
42
46
|
end
|
43
47
|
end
|
44
48
|
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1
|
1
|
+
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.2/historics/delete?id=d5de7feebc6813c53dd2","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:13 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9602"],"X-Ratelimit-Cost":["25"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["409"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:14 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/balance","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["2"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:12 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9662"],"X-Ratelimit-Cost":["25"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["410"],"X-Cache-Control":["max-age=300, must-revalidate"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"e30=\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:13 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:13 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9597"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["409"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNjoxMyIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:15 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1 Ruby/v3.2.0
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:12 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9657"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["410"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNjoxMiIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:13 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/historics/prepare","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["135"]}},"response":{"status":{"code":202,"message":"Accepted"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:13 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9632"],"X-Ratelimit-Cost":["25"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["410"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImQ1ZGU3ZmVlYmM2ODEzYzUzZGQyIiwiZHB1cyI6MC40LCJhdmFp\nbGFiaWxpdHkiOnsic3RhcnQiOiIxNDM1NzA4ODAwIiwiZW5kIjoiMTQzNTcw\nODgwMCIsInNvdXJjZXMiOnsidHVtYmxyIjp7ImF1Z21lbnRhdGlvbnMiOltd\nLCJ2ZXJzaW9ucyI6WyIzIl0sInN0YXR1cyI6MTAwfX19fQ==\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:14 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:12 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9687"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["410"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNjoxMiIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:13 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/dpu","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["43"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:14 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9592"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["409"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJkcHUiOjAuMSwiZGV0YWlsIjp7ImNvbnRhaW5zIjp7ImNvdW50IjoxLCJk\ncHUiOjAuMSwidGFyZ2V0cyI6eyJpbnRlcmFjdGlvbi5jb250ZW50Ijp7ImNv\ndW50IjoxLCJkcHUiOjAuMX19fX19\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:15 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/dpu","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["42"]}},"response":{"status":{"code":400,"message":"Bad Request"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:14 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9587"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["408"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"]},"body":{"encoding":"UTF-8","base64_string":"eyJlcnJvciI6IlVuYWJsZSB0byBnZXQgRFBVIFs0MDBdIiwib3JpZ2luYWxf\nZXJyb3IiOiJVbmFibGUgdG8gZ2V0IERQVSBbNDAwXSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:15 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/dpu","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["39"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:13 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9627"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["409"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJkcHUiOjAuNCwiZGV0YWlsIjp7fX0=\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:14 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/usage","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["17"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:11 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9707"],"X-Ratelimit-Cost":["25"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["411"],"X-Cache-Control":["max-age=300, must-revalidate"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJzdGFydCI6IldlZCwgMDEgSnVsIDIwMTUgMTQ6MzU6MDAgKzAwMDAiLCJl\nbmQiOiJXZWQsIDAxIEp1bCAyMDE1IDE1OjM1OjAwICswMDAwIiwic3RyZWFt\ncyI6eyIyNjU4ODYyZjRiNzgwNDgyZmVmOThjOWRhMTczNzgzMyI6eyJsaWNl\nbnNlcyI6eyJmYWNlYm9va19wYWdlIjoyNiwiZ2VuZGVyIjoxOCwiaW50ZXJh\nY3Rpb24iOjI2LCJsYW5ndWFnZSI6MjYsInNhbGllbmNlLnNlbnRpbWVudCI6\nMTl9LCJzZWNvbmRzIjozNjAwfSwiZWUxMmQwMGY2M2NmYmM3ODFmMzhjYjY1\nNjgwMzE1NGIiOnsibGljZW5zZXMiOnsiZ2VuZGVyIjozMSwiaW50ZXJhY3Rp\nb24iOjY3LCJrbG91dC5zY29yZSI6NjcsImxhbmd1YWdlIjo2Miwic2FsaWVu\nY2Uuc2VudGltZW50Ijo1NSwidHdpdHRlciI6NjcsInR3aXR0ZXJfZ25pcCI6\nNjd9LCJzZWNvbmRzIjozNjAwfSwiZmZmZWExYTUyYjM4ZTRlZTM1YTg3NTQ2\nZGFjZmM5NmYiOnsibGljZW5zZXMiOnsiZmFjZWJvb2tfcGFnZSI6MjEwMCwi\nZ2VuZGVyIjoxNzIwLCJpbnRlcmFjdGlvbiI6MjA5OSwibGFuZ3VhZ2UiOjIw\nOTksInNhbGllbmNlLnNlbnRpbWVudCI6MTl9LCJzZWNvbmRzIjozNjAwfX19\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:12 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/validate","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["44"]}},"response":{"status":{"code":400,"message":"Bad Request"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:11 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9702"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["411"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"]},"body":{"encoding":"UTF-8","base64_string":"eyJlcnJvciI6IldlIGFyZSB1bmFibGUgdG8gcGFyc2UgdGhpcyBzdHJlYW0u\nIEF0IGxpbmUgMSBwb3NpdGlvbiAyMSB3ZSB3ZXJlIGV4cGVjdGluZyBvbmUg\nb2Y6IGFuIG9wZXJhdG9yIHRoYXQgY2FuIGFjdCBvbiBzdHJpbmdzLCBpbnRl\nZ2VycyBvciBmbG9hdCB0eXBlcyAoPT0sICE9LCA8LCA+LCA+PSwgPD0pLCBm\nb2xsb3dlZCBieSBhIHRleHQgdmFsdWU7XG4gb3IgdGhlIFwic3Vic3RyaW5n\nXCIgb3BlcmF0b3IsIGZvbGxvd2VkIGJ5IGEgdGV4dCB2YWx1ZTtcbiBvciA8\ncHJlZGljYXRlLmNvbnRhaW5zX3BhcmFtZXRlcnM+LCBmb2xsb3dlZCBieSBh\nIGxpc3Qgb2YgY29tbWEgc2VwYXJhdGVkIHN0cmluZ3M7XG4gb3IgdGhlIFwi\naW5cIiBvcGVyYXRvciBmb3Igc3RyaW5ncywgZm9sbG93ZWQgYnkgYSBsaXN0\nIG9mIGNvbW1hIHNlcGFyYXRlZCBzdHJpbmdzO1xuIG9yIDxwcmVkaWNhdGUu\nY29udGFpbnNfcGFyYW1ldGVycz4sIGZvbGxvd2VkIGJ5IGEgcXVvdGUgKFwi\nKSwgZm9sbG93ZWQgYnkgYSBsaXN0IG9mIGNvbW1hIHNlcGFyYXRlZCBpdGVt\ncyBpbiBhIGNvbnRhaW5zIG5lYXIgb3BlcmF0b3IncyB2YWx1ZSwgZm9sbG93\nZWQgYnkgYSBjb2xvbiAoOiksIGZvbGxvd2VkIGJ5IHRoZSBudW1iZXIgb2Yg\nd29yZHMgc2VwYXJhdGlvbiBhcmd1bWVudCBpbiB0aGUgY29udGFpbnMgbmVh\nciBvcGVyYXRvcidzIHZhbHVlLCBmb2xsb3dlZCBieSBhIHF1b3RlIChcIik7\nXG4gb3IgPHByZWRpY2F0ZS5jb250YWluc19wYXJhbWV0ZXJzPiwgZm9sbG93\nZWQgYnkgYSB0ZXh0IHZhbHVlO1xuIG9yIHRoZSBcImluXCIgb3BlcmF0b3Ig\nZm9yIGR5bmFtaWMgbGlzdHMsIGZvbGxvd2VkIGJ5IGEgZHluYW1pYyBsaXN0\nIGtleTtcbiBvciA8cHJlZGljYXRlLmNvbnRhaW5zX3BhcmFtZXRlcnM+LCBm\nb2xsb3dlZCBieSBhIGR5bmFtaWMgbGlzdCBrZXkuIn0=\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:13 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/validate","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:12 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9692"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["410"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJjcmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNjoxMiIsImRwdSI6IjAu\nMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:13 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/validate","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:12 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9697"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["411"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJjcmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNjoxMiIsImRwdSI6IjAu\nMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:13 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:34 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8988"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1982"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiZTJhMDczZGE3NGEwMWNjZjViYTk3Y2FlMTQ4ZTY0NTciLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTozNCIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:35 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:34 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8988"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1982"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiZTJhMDczZGE3NGEwMWNjZjViYTk3Y2FlMTQ4ZTY0NTciLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTozNCIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:35 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:57 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9547"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["365"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiZTJhMDczZGE3NGEwMWNjZjViYTk3Y2FlMTQ4ZTY0NTciLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNjo1NyIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:58 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:51 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8832"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1965"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiZTJhMDczZGE3NGEwMWNjZjViYTk3Y2FlMTQ4ZTY0NTciLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTo1MSIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:51 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/preview/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["181"]}},"response":{"status":{"code":202,"message":"Accepted"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:51 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8807"],"X-Ratelimit-Cost":["25"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1965"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImMxOWE5ZWFiZjA4MDA4M2UxNmZkNjhmMDNjZGI0NDg5ODhmZGFj\nODUiLCJjcmVhdGVkX2F0IjoxNDMxNjE1OTUxfQ==\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:52 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:51 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8832"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1965"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiZTJhMDczZGE3NGEwMWNjZjViYTk3Y2FlMTQ4ZTY0NTciLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTo1MSIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:51 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/preview/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["181"]}},"response":{"status":{"code":202,"message":"Accepted"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:51 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8807"],"X-Ratelimit-Cost":["25"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1965"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImMxOWE5ZWFiZjA4MDA4M2UxNmZkNjhmMDNjZGI0NDg5ODhmZGFj\nODUiLCJjcmVhdGVkX2F0IjoxNDMxNjE1OTUxfQ==\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:52 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:56 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9582"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["366"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiZTJhMDczZGE3NGEwMWNjZjViYTk3Y2FlMTQ4ZTY0NTciLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNjo1NiIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:58 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/preview/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["181"]}},"response":{"status":{"code":202,"message":"Accepted"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:57 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9557"],"X-Ratelimit-Cost":["25"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["366"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImE1NjdjODM4MDgxYTJkZDEwZjJmYWY1Yzg2NjZjNzI4ODA3OGY1\nOTYiLCJjcmVhdGVkX2F0IjoxNDM1NzY1MDE3fQ==\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:58 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/preview/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["181"]}},"response":{"status":{"code":202,"message":"Accepted"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:34 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8963"],"X-Ratelimit-Cost":["25"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1982"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImIwMzExZGQ3NTQzMDMwZWMzYjkyODcyOWU2MjYwYWY1MTEyZDJj\nOWUiLCJjcmVhdGVkX2F0IjoxNDMxNjE1OTM0fQ==\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:35 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/preview/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["181"]}},"response":{"status":{"code":202,"message":"Accepted"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:34 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8963"],"X-Ratelimit-Cost":["25"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1982"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImIwMzExZGQ3NTQzMDMwZWMzYjkyODcyOWU2MjYwYWY1MTEyZDJj\nOWUiLCJjcmVhdGVkX2F0IjoxNDMxNjE1OTM0fQ==\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:35 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/preview/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["181"]}},"response":{"status":{"code":202,"message":"Accepted"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:57 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9522"],"X-Ratelimit-Cost":["25"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["365"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6Ijc0ODM1YjAyNzE0OWM0MTI2M2VhMDUxMWU4ZTBkZDc5ZmE0NjZi\nOTUiLCJjcmVhdGVkX2F0IjoxNDM1NzY1MDE4fQ==\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:58 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/preview/get","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["49"]}},"response":{"status":{"code":202,"message":"Accepted"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:51 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8802"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1965"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImMxOWE5ZWFiZjA4MDA4M2UxNmZkNjhmMDNjZGI0NDg5ODhmZGFj\nODUiLCJuYW1lIjoicHJldmlldyIsInByb2dyZXNzIjowLCJzdGF0dXMiOiJx\ndWV1ZWQiLCJmZWVkcyI6ImZhY2Vib29rLHR3aXR0ZXIiLCJzYW1wbGUiOjEs\nImVuZCI6MTM5ODk4NTIwMCwiY3JlYXRlZF9hdCI6MTQzMTYxNTk1MSwic3Rh\ncnQiOjEzOTg4OTg4MDAsInVzZXIiOiIzMDQ5IiwicGFyYW1ldGVycyI6Imxh\nbmd1YWdlLnRhZyxmcmVxRGlzdCw1O2ludGVyYWN0aW9uLmlkLHRhcmdldFZv\nbCxob3VyIiwiaGFzaCI6ImUyYTA3M2RhNzRhMDFjY2Y1YmE5N2NhZTE0OGU2\nNDU3In0=\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:52 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/preview/get","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["49"]}},"response":{"status":{"code":202,"message":"Accepted"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:51 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8802"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1965"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImMxOWE5ZWFiZjA4MDA4M2UxNmZkNjhmMDNjZGI0NDg5ODhmZGFj\nODUiLCJuYW1lIjoicHJldmlldyIsInByb2dyZXNzIjowLCJzdGF0dXMiOiJx\ndWV1ZWQiLCJmZWVkcyI6ImZhY2Vib29rLHR3aXR0ZXIiLCJzYW1wbGUiOjEs\nImVuZCI6MTM5ODk4NTIwMCwiY3JlYXRlZF9hdCI6MTQzMTYxNTk1MSwic3Rh\ncnQiOjEzOTg4OTg4MDAsInVzZXIiOiIzMDQ5IiwicGFyYW1ldGVycyI6Imxh\nbmd1YWdlLnRhZyxmcmVxRGlzdCw1O2ludGVyYWN0aW9uLmlkLHRhcmdldFZv\nbCxob3VyIiwiaGFzaCI6ImUyYTA3M2RhNzRhMDFjY2Y1YmE5N2NhZTE0OGU2\nNDU3In0=\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:52 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/preview/get","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["49"]}},"response":{"status":{"code":202,"message":"Accepted"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:36:57 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9552"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["365"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImE1NjdjODM4MDgxYTJkZDEwZjJmYWY1Yzg2NjZjNzI4ODA3OGY1\nOTYiLCJuYW1lIjoicHJldmlldyIsInByb2dyZXNzIjowLCJzdGF0dXMiOiJx\ndWV1ZWQiLCJmZWVkcyI6ImZhY2Vib29rLHR3aXR0ZXIiLCJzYW1wbGUiOjEs\nImVuZCI6MTM5ODk4NTIwMCwiY3JlYXRlZF9hdCI6MTQzNTc2NTAxNywic3Rh\ncnQiOjEzOTg4OTg4MDAsInVzZXIiOiIzMDQ5IiwicGFyYW1ldGVycyI6Imxh\nbmd1YWdlLnRhZyxmcmVxRGlzdCw1O2ludGVyYWN0aW9uLmlkLHRhcmdldFZv\nbCxob3VyIiwiaGFzaCI6ImUyYTA3M2RhNzRhMDFjY2Y1YmE5N2NhZTE0OGU2\nNDU3In0=\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:36:58 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=ddc8c157f616aee3aaa1cfe7066bceff","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:38 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8939"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1978"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:39 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=ddc8c157f616aee3aaa1cfe7066bceff","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:38 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8939"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1978"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:39 GMT"},{"request":{"method":"delete","uri":"https://api.datasift.com/v1.2/push/delete?id=73a3ecf2129d5e490812b6b58b12b6f7","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:15 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9478"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["347"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:16 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=1fbbf328c86bc80bcf1f8a84e2b805e3","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:36 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8950"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1980"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:37 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=1fbbf328c86bc80bcf1f8a84e2b805e3","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:36 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8950"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1980"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:37 GMT"},{"request":{"method":"delete","uri":"https://api.datasift.com/v1.2/push/delete?id=f4b59a9f60ae5a53d901dc6e08291754","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:12 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9500"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["350"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:14 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=f34551a6d685f8f356af010a09a833e3","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:51 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8837"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1966"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:51 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=f34551a6d685f8f356af010a09a833e3","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:51 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8837"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1966"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:51 GMT"},{"request":{"method":"delete","uri":"https://api.datasift.com/v1.2/push/delete?id=a60cfa6cf10af7dcb9a091f4bec6f779","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:20 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9437"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["342"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:21 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=a83072cf024ceab52344d99805f1cb36","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:43 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8927"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1975"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:44 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=a83072cf024ceab52344d99805f1cb36","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:43 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8927"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1975"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:44 GMT"},{"request":{"method":"delete","uri":"https://api.datasift.com/v1.2/push/delete?id=3d0fbe41102c39deae6e38023a71d202","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:21 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9425"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["341"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:22 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=fcd5bebb85d76db84eb42e8fc625626e","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:31 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9024"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1985"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:32 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=fcd5bebb85d76db84eb42e8fc625626e","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:31 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9024"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1985"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:32 GMT"},{"request":{"method":"delete","uri":"https://api.datasift.com/v1.2/push/delete?id=937edd7c668b9b31521413aa71298cfd","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:19 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9449"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["344"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:20 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=b6ee7c5a00f1f8c49acabac4dde320dd","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:46 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8900"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1971"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:47 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=b6ee7c5a00f1f8c49acabac4dde320dd","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:46 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8900"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1971"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:47 GMT"},{"request":{"method":"delete","uri":"https://api.datasift.com/v1.2/push/delete?id=814be4b0af12123647df907807c0f75f","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:23 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9413"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["340"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:24 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=2fe7eb95ff26ce994dc27c99c8c4fad8","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:33 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9008"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1983"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:34 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=2fe7eb95ff26ce994dc27c99c8c4fad8","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:33 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9008"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1983"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:34 GMT"},{"request":{"method":"delete","uri":"https://api.datasift.com/v1.2/push/delete?id=e8173852644b9acc4e96a2bd91e3fa0d","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:17 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9462"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["345"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:18 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:37 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8945"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1979"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTozNyIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:37 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:37 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8945"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1979"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTozNyIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:37 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:14 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9484"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["348"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNzoxNCIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:15 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:47 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8870"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1969"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTo0NyIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:47 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:47 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8865"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1969"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImY0MjkxYzc1OThkNGJiMzc4NzdmMGE3MDkwMDliNmNhIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5NDcsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTQ3LCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:48 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:47 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8870"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1969"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTo0NyIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:47 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:47 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8865"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1969"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImY0MjkxYzc1OThkNGJiMzc4NzdmMGE3MDkwMDliNmNhIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5NDcsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTQ3LCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:48 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:13 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9495"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["350"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNzoxMyIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:14 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:13 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9490"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["349"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImU3OWNiZGI4NDYxMmNkNGFkMWUxMWZkZmQ5ZjQwZGFjIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzU3NjUwMzMsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDM1\nNzY1MDMzLCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:14 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:34 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8958"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1982"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTozNCIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:35 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:35 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8953"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1982"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjFmYmJmMzI4Yzg2YmM4MGJjZjFmOGE4NGUyYjgwNWUzIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzUsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTM1LCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:35 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:34 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8958"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1982"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTozNCIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:35 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:35 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8953"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1982"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjFmYmJmMzI4Yzg2YmM4MGJjZjFmOGE4NGUyYjgwNWUzIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzUsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTM1LCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:35 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:10 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9507"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["352"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNzoxMCIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:11 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:11 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9502"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["352"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImY0YjU5YTlmNjBhZTVhNTNkOTAxZGM2ZTA4MjkxNzU0Iiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzU3NjUwMzEsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDM1\nNzY1MDMxLCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:12 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:49 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8844"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1967"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTo0OSIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:50 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:50 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8839"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1967"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImYzNDU1MWE2ZDY4NWY4ZjM1NmFmMDEwYTA5YTgzM2UzIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5NTAsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTUwLCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:51 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:49 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8844"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1967"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTo0OSIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:50 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:50 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8839"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1967"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImYzNDU1MWE2ZDY4NWY4ZjM1NmFmMDEwYTA5YTgzM2UzIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5NTAsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTUwLCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:51 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:19 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9444"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["343"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNzoxOSIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:20 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:19 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9439"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["343"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImE2MGNmYTZjZjEwYWY3ZGNiOWEwOTFmNGJlYzZmNzc5Iiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzU3NjUwMzksInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDM1\nNzY1MDM5LCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:21 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:39 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8934"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1978"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTozOSIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:39 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:39 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8929"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1977"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImE4MzA3MmNmMDI0Y2VhYjUyMzQ0ZDk5ODA1ZjFjYjM2Iiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzksInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTM5LCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:40 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:39 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8934"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1978"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTozOSIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:39 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:39 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8929"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1977"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImE4MzA3MmNmMDI0Y2VhYjUyMzQ0ZDk5ODA1ZjFjYjM2Iiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzksInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTM5LCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:40 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:20 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9432"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["342"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNzoyMCIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:21 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:21 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9427"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["342"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjNkMGZiZTQxMTAyYzM5ZGVhZTZlMzgwMjNhNzFkMjAyIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzU3NjUwNDEsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDM1\nNzY1MDQxLCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:22 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:30 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9032"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1986"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTozMCIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:30 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:31 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9027"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1986"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImZjZDViZWJiODVkNzZkYjg0ZWI0MmU4ZmM2MjU2MjZlIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzAsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTMwLCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:31 GMT"},{"request":{"method":"put","uri":"https://api.datasift.com/v1.1/push/pause","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["41"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:31 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9026"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1985"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImZjZDViZWJiODVkNzZkYjg0ZWI0MmU4ZmM2MjU2MjZlIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzAsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6InBhdXNlZCIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTMwLCJlbmQiOm51bGx9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:31 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:30 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9032"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1986"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTozMCIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:30 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:31 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9027"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1986"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImZjZDViZWJiODVkNzZkYjg0ZWI0MmU4ZmM2MjU2MjZlIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzAsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTMwLCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:31 GMT"},{"request":{"method":"put","uri":"https://api.datasift.com/v1.1/push/pause","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["41"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:31 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9026"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1985"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImZjZDViZWJiODVkNzZkYjg0ZWI0MmU4ZmM2MjU2MjZlIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzAsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6InBhdXNlZCIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTMwLCJlbmQiOm51bGx9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:31 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:17 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9457"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["345"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNzoxNyIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:18 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:18 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9452"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["345"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjkzN2VkZDdjNjY4YjliMzE1MjE0MTNhYTcxMjk4Y2ZkIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzU3NjUwMzgsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDM1\nNzY1MDM4LCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:19 GMT"},{"request":{"method":"put","uri":"https://api.datasift.com/v1.2/push/pause","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["41"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:18 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9451"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["344"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjkzN2VkZDdjNjY4YjliMzE1MjE0MTNhYTcxMjk4Y2ZkIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzU3NjUwMzgsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6InBhdXNlZCIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDM1\nNzY1MDM4LCJlbmQiOm51bGx9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:19 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:44 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8907"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1972"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTo0NCIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:44 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:44 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8902"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1972"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImI2ZWU3YzVhMDBmMWY4YzQ5YWNhYmFjNGRkZTMyMGRkIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5NDQsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTQ0LCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:45 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:44 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8907"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1972"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTo0NCIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:44 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:44 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8902"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1972"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImI2ZWU3YzVhMDBmMWY4YzQ5YWNhYmFjNGRkZTMyMGRkIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5NDQsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTQ0LCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:45 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:21 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9420"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["341"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNzoyMSIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:22 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:22 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9415"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["341"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjgxNGJlNGIwYWYxMjEyMzY0N2RmOTA3ODA3YzBmNzVmIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzU3NjUwNDIsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDM1\nNzY1MDQyLCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:23 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:31 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9019"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1985"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTozMSIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:32 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:32 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9014"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1985"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjJmZTdlYjk1ZmYyNmNlOTk0ZGMyN2M5OWM4YzRmYWQ4Iiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzIsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTMyLCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:33 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:31 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9019"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1985"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNS0xNCAxNTowNTozMSIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:32 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:32 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9014"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1985"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjJmZTdlYjk1ZmYyNmNlOTk0ZGMyN2M5OWM4YzRmYWQ4Iiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzIsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTMyLCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:33 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/compile","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["48"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:15 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9473"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["347"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJoYXNoIjoiMTQ1ZWEyNGE0ZDgzYTE0ZWNiOTA3N2I4MzFmMTQ4MDkiLCJj\ncmVhdGVkX2F0IjoiMjAxNS0wNy0wMSAxNTozNzoxNSIsImRwdSI6IjAuMSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:16 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:16 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9468"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["347"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImU4MTczODUyNjQ0YjlhY2M0ZTk2YTJiZDkxZTNmYTBkIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzU3NjUwMzYsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDM1\nNzY1MDM2LCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:17 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:37 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8940"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1979"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImRkYzhjMTU3ZjYxNmFlZTNhYWExY2ZlNzA2NmJjZWZmIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzcsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTM3LCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:38 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:37 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8940"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1979"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImRkYzhjMTU3ZjYxNmFlZTNhYWExY2ZlNzA2NmJjZWZmIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzcsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTM3LCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:38 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/push/create","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["340"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:15 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9479"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["348"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjczYTNlY2YyMTI5ZDVlNDkwODEyYjZiNThiMTJiNmY3Iiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzU3NjUwMzQsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDM1\nNzY1MDM0LCJlbmQiOjB9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:16 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=f4291c7598d4bb37877f0a709009b6ca","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:48 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8864"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1969"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:48 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"delete","uri":"https://api.datasift.com/v1.1/push/delete?id=f4291c7598d4bb37877f0a709009b6ca","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:48 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8864"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1969"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:48 GMT"},{"request":{"method":"delete","uri":"https://api.datasift.com/v1.2/push/delete?id=e79cbdb84612cd4ad1e11fdfd9f40dac","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:14 GMT"],"Content-Type":["text/html"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9489"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["349"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":""},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:15 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"get","uri":"https://api.datasift.com/v1.1/push/get?id=1fbbf328c86bc80bcf1f8a84e2b805e3","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:36 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8952"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1981"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjFmYmJmMzI4Yzg2YmM4MGJjZjFmOGE4NGUyYjgwNWUzIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzUsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOjAsImludGVyYWN0aW9uX2NvdW50IjowLCJsb3N0X2RhdGEi\nOmZhbHNlLCJzdGFydCI6MTQzMTYxNTkzNSwiZW5kIjpudWxsfQ==\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:37 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"https://api.datasift.com/v1.1/push/get?id=1fbbf328c86bc80bcf1f8a84e2b805e3","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:36 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8952"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1981"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjFmYmJmMzI4Yzg2YmM4MGJjZjFmOGE4NGUyYjgwNWUzIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzUsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOjAsImludGVyYWN0aW9uX2NvdW50IjowLCJsb3N0X2RhdGEi\nOmZhbHNlLCJzdGFydCI6MTQzMTYxNTkzNSwiZW5kIjpudWxsfQ==\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:37 GMT"},{"request":{"method":"get","uri":"https://api.datasift.com/v1.2/push/get?id=f4b59a9f60ae5a53d901dc6e08291754","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:12 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9501"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["351"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImY0YjU5YTlmNjBhZTVhNTNkOTAxZGM2ZTA4MjkxNzU0Iiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzU3NjUwMzEsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOjAsImludGVyYWN0aW9uX2NvdW50IjowLCJsb3N0X2RhdGEi\nOmZhbHNlLCJzdGFydCI6MTQzNTc2NTAzMSwiZW5kIjpudWxsfQ==\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:13 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"get","uri":"https://api.datasift.com/v1.1/push/log?id=f34551a6d685f8f356af010a09a833e3&order_by=request_time&order_dir=desc&page=1&per_page=20","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:50 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8838"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1966"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJzdWNjZXNzIjp0cnVlLCJjb3VudCI6MCwibG9nX2VudHJpZXMiOltdfQ==\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:51 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"https://api.datasift.com/v1.1/push/log?id=f34551a6d685f8f356af010a09a833e3&order_by=request_time&order_dir=desc&page=1&per_page=20","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:50 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8838"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1966"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJzdWNjZXNzIjp0cnVlLCJjb3VudCI6MCwibG9nX2VudHJpZXMiOltdfQ==\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:51 GMT"},{"request":{"method":"get","uri":"https://api.datasift.com/v1.2/push/log?id=a60cfa6cf10af7dcb9a091f4bec6f779&order_by=request_time&order_dir=desc&page=1&per_page=20","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:20 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9438"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["342"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJzdWNjZXNzIjp0cnVlLCJjb3VudCI6MCwibG9nX2VudHJpZXMiOltdfQ==\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:21 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"put","uri":"https://api.datasift.com/v1.1/push/pause","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["41"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:41 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8928"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1977"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImE4MzA3MmNmMDI0Y2VhYjUyMzQ0ZDk5ODA1ZjFjYjM2Iiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzksInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6InBhdXNlZCIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTM5LCJlbmQiOm51bGx9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:41 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"put","uri":"https://api.datasift.com/v1.1/push/pause","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["41"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:41 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8928"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1977"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImE4MzA3MmNmMDI0Y2VhYjUyMzQ0ZDk5ODA1ZjFjYjM2Iiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzksInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6InBhdXNlZCIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTM5LCJlbmQiOm51bGx9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:41 GMT"},{"request":{"method":"put","uri":"https://api.datasift.com/v1.2/push/pause","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["41"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:21 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9426"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["341"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjNkMGZiZTQxMTAyYzM5ZGVhZTZlMzgwMjNhNzFkMjAyIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzU3NjUwNDEsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6InBhdXNlZCIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDM1\nNzY1MDQxLCJlbmQiOm51bGx9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:22 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"put","uri":"https://api.datasift.com/v1.1/push/resume","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["41"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:31 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9025"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1985"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImZjZDViZWJiODVkNzZkYjg0ZWI0MmU4ZmM2MjU2MjZlIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzAsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTMwLCJlbmQiOm51bGx9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:32 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"put","uri":"https://api.datasift.com/v1.1/push/resume","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["41"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:31 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9025"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1985"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImZjZDViZWJiODVkNzZkYjg0ZWI0MmU4ZmM2MjU2MjZlIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzAsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMx\nNjE1OTMwLCJlbmQiOm51bGx9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:32 GMT"},{"request":{"method":"put","uri":"https://api.datasift.com/v1.2/push/resume","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["41"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:18 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9450"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["344"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjkzN2VkZDdjNjY4YjliMzE1MjE0MTNhYTcxMjk4Y2ZkIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzU3NjUwMzgsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDM1\nNzY1MDM4LCJlbmQiOm51bGx9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:19 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"put","uri":"https://api.datasift.com/v1.1/push/stop","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["41"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:45 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8901"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1972"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImI2ZWU3YzVhMDBmMWY4YzQ5YWNhYmFjNGRkZTMyMGRkIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5NDQsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImZpbmlzaGluZyIs\nImxhc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1h\naW5pbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0Ijox\nNDMxNjE1OTQ0LCJlbmQiOjE0MzE2MTU5NDV9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:46 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"put","uri":"https://api.datasift.com/v1.1/push/stop","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["41"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:45 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8901"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1972"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImI2ZWU3YzVhMDBmMWY4YzQ5YWNhYmFjNGRkZTMyMGRkIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5NDQsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImZpbmlzaGluZyIs\nImxhc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1h\naW5pbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0Ijox\nNDMxNjE1OTQ0LCJlbmQiOjE0MzE2MTU5NDV9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:46 GMT"},{"request":{"method":"put","uri":"https://api.datasift.com/v1.2/push/stop","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["41"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:22 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9414"],"X-Ratelimit-Cost":["1"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["340"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjgxNGJlNGIwYWYxMjEyMzY0N2RmOTA3ODA3YzBmNzVmIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzU3NjUwNDIsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImZpbmlzaGluZyIs\nImxhc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1h\naW5pbmdfYnl0ZXMiOm51bGwsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0Ijox\nNDM1NzY1MDQyLCJlbmQiOjE0MzU3NjUwNDJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:24 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/update","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["320"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:33 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9009"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1984"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjJmZTdlYjk1ZmYyNmNlOTk0ZGMyN2M5OWM4YzRmYWQ4Iiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzIsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOjAsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMxNjE1\nOTMyLCJlbmQiOm51bGx9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:33 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/update","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["320"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:33 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9009"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1984"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjJmZTdlYjk1ZmYyNmNlOTk0ZGMyN2M5OWM4YzRmYWQ4Iiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzE2MTU5MzIsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOjAsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDMxNjE1\nOTMyLCJlbmQiOm51bGx9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:33 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/push/update","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["320"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:16 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9463"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["346"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6ImU4MTczODUyNjQ0YjlhY2M0ZTk2YTJiZDkxZTNmYTBkIiwib3V0\ncHV0X3R5cGUiOiJzMyIsIm5hbWUiOiJSdWJ5IFB1c2ggRXhhbXBsZSIsImNy\nZWF0ZWRfYXQiOjE0MzU3NjUwMzYsInVzZXJfaWQiOjMwNDksImhhc2giOiIx\nNDVlYTI0YTRkODNhMTRlY2I5MDc3YjgzMWYxNDgwOSIsImhhc2hfdHlwZSI6\nInN0cmVhbSIsIm91dHB1dF9wYXJhbXMiOnsiYnVja2V0IjoiY29tZGF0YXNp\nZnRqYXNvbiIsImRpcmVjdG9yeSI6InJ1YnkiLCJhY2wiOiJwcml2YXRlIiwi\nZGVsaXZlcnlfZnJlcXVlbmN5IjowLCJtYXhfc2l6ZSI6MTA0ODU3NjAwLCJm\naWxlX3ByZWZpeCI6IkRhdGFTaWZ0In0sInN0YXR1cyI6ImFjdGl2ZSIsImxh\nc3RfcmVxdWVzdCI6bnVsbCwibGFzdF9zdWNjZXNzIjpudWxsLCJyZW1haW5p\nbmdfYnl0ZXMiOjAsImxvc3RfZGF0YSI6ZmFsc2UsInN0YXJ0IjoxNDM1NzY1\nMDM2LCJlbmQiOm51bGx9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:18 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +1 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/validate","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["271"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:48 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8854"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1968"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJzdWNjZXNzIjp0cnVlLCJtZXNzYWdlIjoiVmFsaWRhdGVkIHN1Y2Nlc3Nm\ndWxseSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:49 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/validate","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["271"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:49 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8849"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1968"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJzdWNjZXNzIjp0cnVlLCJtZXNzYWdlIjoiVmFsaWRhdGVkIHN1Y2Nlc3Nm\ndWxseSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:50 GMT"}],"recorded_with":"VCR 2.9.3"}
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/validate","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["271"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:48 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8854"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1968"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"]},"body":{"encoding":"UTF-8","base64_string":"eyJzdWNjZXNzIjp0cnVlLCJtZXNzYWdlIjoiVmFsaWRhdGVkIHN1Y2Nlc3Nm\ndWxseSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:49 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.1/push/validate","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.1 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["271"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Thu, 14 May 2015 15:05:49 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.1"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["8849"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1431617916"],"X-Ratelimit-Reset-Ttl":["1968"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"]},"body":{"encoding":"UTF-8","base64_string":"eyJzdWNjZXNzIjp0cnVlLCJtZXNzYWdlIjoiVmFsaWRhdGVkIHN1Y2Nlc3Nm\ndWxseSJ9\n"},"http_version":null},"recorded_at":"Thu, 14 May 2015 15:05:50 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/push/validate","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["271"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:09 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9517"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["353"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2584"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJzdWNjZXNzIjp0cnVlLCJtZXNzYWdlIjoiVmFsaWRhdGVkIHN1Y2Nlc3Nm\ndWxseSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:11 GMT"},{"request":{"method":"post","uri":"https://api.datasift.com/v1.2/push/validate","body":{"encoding":"UTF-8","base64_string":"PEJBU0U2NF9TVFJJTkc+\n"},"headers":{"Accept":["*/*; q=0.5, application/xml"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["DataSift/v1.2 Ruby/v3.2.0"],"Authorization":["<USERNAME:API_KEY>"],"Content-Type":["application/json"],"Content-Length":["271"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx"],"Date":["Wed, 01 Jul 2015 15:37:10 GMT"],"Content-Type":["application/json"],"Transfer-Encoding":["chunked"],"Connection":["close"],"X-Api-Version":["1.2"],"P3p":["CP=\"CAO PSA\""],"X-Ratelimit-Limit":["10000"],"X-Ratelimit-Remaining":["9512"],"X-Ratelimit-Cost":["5"],"X-Ratelimit-Reset":["1435765382"],"X-Ratelimit-Reset-Ttl":["352"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Authorization,Content-Type"],"X-Served-By":["ded2587"],"X-Frame-Options":["SAMEORIGIN"]},"body":{"encoding":"UTF-8","base64_string":"eyJzdWNjZXNzIjp0cnVlLCJtZXNzYWdlIjoiVmFsaWRhdGVkIHN1Y2Nlc3Nm\ndWxseSJ9\n"},"http_version":null},"recorded_at":"Wed, 01 Jul 2015 15:37:11 GMT"}],"recorded_with":"VCR 2.9.3"}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: datasift
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DataSift
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2015-05
|
13
|
+
date: 2015-08-05 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rest-client
|
@@ -96,7 +96,8 @@ files:
|
|
96
96
|
- examples/historics_eg.rb
|
97
97
|
- examples/historics_preview_eg.rb
|
98
98
|
- examples/live_stream_eg.rb
|
99
|
-
- examples/
|
99
|
+
- examples/managed_source_fb_eg.rb
|
100
|
+
- examples/managed_source_ig_eg.rb
|
100
101
|
- examples/pull.rb
|
101
102
|
- examples/push_eg.rb
|
102
103
|
- examples/pylon_eg.rb
|
@@ -1,113 +0,0 @@
|
|
1
|
-
require './auth'
|
2
|
-
class ManagedSourceApi < DataSiftExample
|
3
|
-
def initialize
|
4
|
-
super
|
5
|
-
run
|
6
|
-
end
|
7
|
-
|
8
|
-
def run
|
9
|
-
begin
|
10
|
-
puts 'Creating a managed source'
|
11
|
-
parameters = {
|
12
|
-
:likes => true,
|
13
|
-
:comments => true
|
14
|
-
}
|
15
|
-
resources = [{
|
16
|
-
:parameters => {
|
17
|
-
:type => 'user',
|
18
|
-
:value => 25025320
|
19
|
-
}
|
20
|
-
}]
|
21
|
-
auth = [{
|
22
|
-
:parameters => {
|
23
|
-
:value => '10942122.00a3229.fff654d524854054bdb0288a05cdbdd1'
|
24
|
-
}
|
25
|
-
}]
|
26
|
-
|
27
|
-
source = @datasift.managed_source.create('instagram', 'Ruby test', parameters, resources, auth)
|
28
|
-
puts source
|
29
|
-
|
30
|
-
id = source[:data][:id]
|
31
|
-
|
32
|
-
puts "\nStarting delivery for my Managed Source"
|
33
|
-
puts @datasift.managed_source.start id
|
34
|
-
|
35
|
-
# Define new resources to be added
|
36
|
-
update_resources = [{
|
37
|
-
:parameters => {
|
38
|
-
:type => 'user',
|
39
|
-
:value => 8139971
|
40
|
-
}
|
41
|
-
}]
|
42
|
-
|
43
|
-
# Push each of the existing resources back into the new resources array
|
44
|
-
source[:data][:resources].each do |resource|
|
45
|
-
update_resources.push(resource)
|
46
|
-
end
|
47
|
-
|
48
|
-
puts "\nUpdating; adding a new resource, and changing the name"
|
49
|
-
puts @datasift.managed_source.update(id, 'instagram', 'Updated Ruby test', source[:data][:parameters], update_resources, source[:data][:auth])
|
50
|
-
|
51
|
-
puts "\nGetting info from DataSift about my source"
|
52
|
-
puts @datasift.managed_source.get id
|
53
|
-
|
54
|
-
# Define new resources to add to Managed Source
|
55
|
-
new_resources = [{
|
56
|
-
:parameters => {
|
57
|
-
:type => "tag",
|
58
|
-
:value => "sun"
|
59
|
-
}
|
60
|
-
},
|
61
|
-
{
|
62
|
-
:parameters => {
|
63
|
-
:type => "tag",
|
64
|
-
:value => "sea"
|
65
|
-
}
|
66
|
-
},
|
67
|
-
{
|
68
|
-
:parameters => {
|
69
|
-
:type => "tag",
|
70
|
-
:value => "surf"
|
71
|
-
}
|
72
|
-
}]
|
73
|
-
|
74
|
-
new_auth = [{
|
75
|
-
:parameters => {
|
76
|
-
:value => '10942111.1f2134f.8837abb205b44ece801022f6fa989cc4'
|
77
|
-
}
|
78
|
-
}]
|
79
|
-
|
80
|
-
puts "\nAdding a new resource to my source (as an array of Ruby objects)"
|
81
|
-
puts @datasift.managed_source_resource.add(id, new_resources)
|
82
|
-
|
83
|
-
puts "\nAdding a new auth token to my source (as an array of Ruby objects)"
|
84
|
-
puts @datasift.managed_source_auth.add(id, new_auth)
|
85
|
-
|
86
|
-
puts "\nGetting info from DataSift about my source (notice the new resources and tokens have been added)"
|
87
|
-
source = @datasift.managed_source.get id
|
88
|
-
puts source
|
89
|
-
|
90
|
-
puts "\nRemoving a resource from my source by resource_id"
|
91
|
-
puts @datasift.managed_source_resource.remove(id, [source[:data][:resources][0][:resource_id]])
|
92
|
-
|
93
|
-
puts "\nRemoving an auth token from my source by identity_id"
|
94
|
-
puts @datasift.managed_source_auth.remove(id, [source[:data][:auth][0][:identity_id]])
|
95
|
-
|
96
|
-
puts "\nGetting info from DataSift about my source (notice an auth token and resource have been removed)"
|
97
|
-
puts @datasift.managed_source.get id
|
98
|
-
|
99
|
-
puts "\nFetching logs"
|
100
|
-
puts @datasift.managed_source.log id
|
101
|
-
|
102
|
-
puts "\nStopping"
|
103
|
-
puts @datasift.managed_source.stop id
|
104
|
-
|
105
|
-
puts "\nDeleting"
|
106
|
-
puts @datasift.managed_source.delete id
|
107
|
-
rescue DataSiftError => dse
|
108
|
-
puts dse.message
|
109
|
-
end
|
110
|
-
end
|
111
|
-
end
|
112
|
-
|
113
|
-
ManagedSourceApi.new
|