semantria 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c7d041f85777fdd4007e96a1ae2863d7287c3d02
4
+ data.tar.gz: 5e6a2f9196ae488726411814f8a41aecfd393bf5
5
+ SHA512:
6
+ metadata.gz: 8621d873b6fde23d529cc10a3d9f58b5456fd69d420ff1937ce0784080bed9626c319f2bd2da6ab89695d25f495481bb0097f11c966efdc3f72848a2eef8bbba
7
+ data.tar.gz: 0a6584306870d56e944f73d976704d6b120a3aea331f333026b092068db64d17f4da7e1684b08dcb23b5d80d82c346f594e84e6d3fb98fa1cb91890b6f068e12
@@ -0,0 +1 @@
1
+ service_name: travis-ci
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
@@ -0,0 +1,14 @@
1
+ anguage: ruby
2
+ cache: bundler
3
+
4
+ rvm:
5
+ - 2.1.1
6
+
7
+ script: 'bundle exec rake'
8
+
9
+ notifications:
10
+ email:
11
+ recipients:
12
+ - mdubov@gmail.com
13
+ on_failure: change
14
+ on_success: never
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in semantria.gemspec
4
+ gemspec
5
+
6
+ group :test do
7
+ gem 'webmock'
8
+ gem 'vcr'
9
+ end
@@ -0,0 +1,5 @@
1
+ guard :rspec, cmd: 'rspec' do
2
+ watch(%r{^spec/.+_spec\.rb$})
3
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
4
+ watch('spec/spec_helper.rb') { "spec" }
5
+ end
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Mikhail Dubov
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,46 @@
1
+ [![Build Status](https://travis-ci.org/duboff/semantria.svg?branch=master)](https://travis-ci.org/Integralist/Sinderella)
2
+
3
+ [![Coverage Status](https://img.shields.io/coveralls/duboff/semantria.svg)](https://coveralls.io/r/duboff/semantria?branch=master)
4
+
5
+ [![Dependency Status](https://gemnasium.com/duboff/semantria.svg)](https://gemnasium.com/duboff/semantria)
6
+
7
+ [![Code Climate](https://codeclimate.com/github/duboff/semantria/badges/gpa.svg)](https://codeclimate.com/github/duboff/semantria)
8
+
9
+ # Semantria
10
+
11
+ The goal of this gem is to simplify interaction with Semantia API. Semantria have an official Ruby SDK which is currently more full (coverall all of the API) but is very hard to understand and use. This gem uses httparty to simplify the code. It should be easy to debug and improve.
12
+
13
+ ## Installation
14
+
15
+ Add this line to your application's Gemfile:
16
+
17
+ gem 'semantria'
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install semantria
26
+
27
+ ## Usage
28
+
29
+ ```
30
+ client = Semantria::Client.new('key', 'secret')
31
+
32
+ client.check_status # => 200
33
+
34
+ client.queue_document('Here is some nice test') # => queue single document for analysis
35
+
36
+ client.queue_batch(['Here is some nice test', 'And another one']) # => queue single document for analysis
37
+
38
+ client.get_processed_documents
39
+
40
+ ## Contributing
41
+
42
+ 1. Fork it ( https://github.com/[my-github-username]/semantria/fork )
43
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
44
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
45
+ 4. Push to the branch (`git push origin my-new-feature`)
46
+ 5. Create a new Pull Request
@@ -0,0 +1,11 @@
1
+ require "bundler/gem_tasks"
2
+ require 'rspec/core/rake_task'
3
+ require 'bundler/gem_tasks'
4
+
5
+ # Default directory to look in is `/specs`
6
+ # Run with `rake spec`
7
+ RSpec::Core::RakeTask.new(:spec) do |task|
8
+ task.rspec_opts = ['--color', '--format', 'documentation']
9
+ end
10
+
11
+ task :default => :spec
@@ -0,0 +1,46 @@
1
+ require "semantria/version"
2
+ require "semantria/auth"
3
+ require 'httparty'
4
+
5
+ module Semantria
6
+ class Client
7
+ include HTTParty
8
+ # debug_output $stderr
9
+ base_uri 'https://api35.semantria.com'
10
+ format :json
11
+
12
+ attr_reader :consumer_secret, :consumer_key, :auth
13
+
14
+ def initialize(consumer_key, consumer_secret)
15
+ @auth = Authenticator.new(consumer_key, consumer_secret)
16
+ @consumer_secret, @consumer_key = consumer_secret, consumer_key
17
+ end
18
+
19
+ def check_status
20
+ auth.uri = URI.parse(self.class.base_uri + "/status.json")
21
+ self.class.get("/status.json", verify: false, headers: auth.headers, query: auth.parameters_hash)
22
+ end
23
+
24
+ def queue_document(text)
25
+ doc = {'id' => rand(10 ** 10).to_s.rjust(10, '0'), 'text' => text}
26
+
27
+ auth.uri = URI.parse(self.class.base_uri + "/document")
28
+ json = JSON.generate doc
29
+ self.class.post("/document", verify: false, headers: auth.headers, query: auth.parameters_hash, body: json)
30
+ end
31
+
32
+ def queue_batch(batch)
33
+ auth.uri = URI.parse(self.class.base_uri + "/document/batch")
34
+ batch = batch.map do |document|
35
+ {'id' => rand(10 ** 10).to_s.rjust(10, '0'), 'text' => document}
36
+ end
37
+ json = JSON.generate batch
38
+ self.class.post("/document/batch", verify: false, headers: auth.headers, query: auth.parameters_hash, body: json)
39
+ end
40
+
41
+ def get_processed_documents
42
+ auth.uri = URI.parse(self.class.base_uri + "/document/processed.json")
43
+ self.class.get("/document/processed.json", verify: false, headers: auth.headers, query: auth.parameters_hash, body: nil)
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,63 @@
1
+ require 'securerandom'
2
+ require 'openssl'
3
+ require 'cgi'
4
+ require 'base64'
5
+ require 'digest/md5'
6
+ require 'digest/sha1'
7
+ require 'uri'
8
+
9
+ module Semantria
10
+
11
+ class Authenticator
12
+ attr_reader :consumer_secret, :consumer_key
13
+ attr_accessor :uri
14
+
15
+ def initialize(consumer_key, consumer_secret)
16
+ @consumer_secret, @consumer_key = consumer_secret, consumer_key
17
+ end
18
+
19
+ def headers
20
+ {'Authorization' => parameters_hash.merge({'OAuth realm' => '', "oauth_signature" => signature}).map { |k, v| "#{k}=#{v}" }.join(',')}
21
+ end
22
+
23
+ def parameters_hash
24
+ { "oauth_version" => '1.0',
25
+ "oauth_timestamp" => timestamp,
26
+ "oauth_nonce" => nonce,
27
+ "oauth_signature_method" => "HMAC-SHA1",
28
+ "oauth_consumer_key" => consumer_key }
29
+ end
30
+
31
+ def updated_uri
32
+ uri.query = parameters_hash.map {|k, v| "#{k}=#{v}"}.join('&').gsub('+', '%20').gsub('%7E', '~')
33
+ uri
34
+ end
35
+
36
+ def path
37
+ updated_uri.request_uri
38
+ end
39
+
40
+ private
41
+
42
+ def nonce
43
+ @nonce ||= rand(10 ** 20).to_s.rjust(20, '0')
44
+ end
45
+
46
+ def timestamp
47
+ Time.now.to_i.to_s
48
+ end
49
+
50
+ def signature
51
+ escape(sha_1)
52
+ end
53
+
54
+ def sha_1
55
+ a = OpenSSL::HMAC.digest(OpenSSL::Digest.new('sha1'), Digest::MD5.hexdigest(consumer_secret), escape(updated_uri.to_s))
56
+ Base64.encode64(a).chomp.gsub(/\n/, '')
57
+ end
58
+
59
+ def escape(s)
60
+ CGI::escape(s)
61
+ end
62
+ end
63
+ end
@@ -0,0 +1,3 @@
1
+ module Semantria
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'semantria/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "semantria"
8
+ spec.version = Semantria::VERSION
9
+ spec.authors = ["Mikhail Dubov"]
10
+ spec.email = ["mdubov@gmail.com"]
11
+ spec.summary = "A more natural ruby interface for the Semantria API"
12
+ spec.description = "Allows interaction with the Semantria API"
13
+ spec.homepage = "http://github.com/duboff/semantria"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_development_dependency "rspec"
24
+ spec.add_development_dependency "guard"
25
+ spec.add_development_dependency "guard-rspec"
26
+ spec.add_development_dependency "pry"
27
+ spec.add_development_dependency "pry-remote"
28
+ spec.add_development_dependency "pry-nav"
29
+ spec.add_development_dependency "coveralls"
30
+ spec.add_development_dependency "httparty"
31
+ end
@@ -0,0 +1,23 @@
1
+ require 'spec_helper'
2
+
3
+ describe Semantria::Authenticator do
4
+
5
+ context 'generating URL parameters' do
6
+
7
+ let(:auth) {described_class.new('bla', 'bla')}
8
+
9
+ it 'generates correct parameters_hash' do
10
+ expect(auth.parameters_hash).to be_a Hash
11
+ expect(auth.parameters_hash["oauth_version"]).to eq '1.0'
12
+ expect(auth.parameters_hash["oauth_signature_method"]).to eq "HMAC-SHA1"
13
+ expect(auth.parameters_hash["oauth_consumer_key"]).to eq "bla"
14
+ end
15
+
16
+ it 'generates correct header' do
17
+ auth.uri = URI.parse("http://google.com")
18
+ expect(auth.headers).to be_a Hash
19
+ expect(auth.headers.size).to eq 1
20
+ expect(auth.headers['Authorization']).to be_a String
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,873 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=75398756417873298710&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409094958&oauth_version=1.0
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Authorization:
11
+ - oauth_version=1.0,oauth_timestamp=1409094958,oauth_nonce=75398756417873298710,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
12
+ realm=,oauth_signature=THG1K64c7lPHNwsdMtvz6TNQI5k%3D
13
+ response:
14
+ status:
15
+ code: 200
16
+ message: OK
17
+ headers:
18
+ Server:
19
+ - nginx/1.4.7
20
+ Date:
21
+ - Tue, 26 Aug 2014 23:15:59 GMT
22
+ Content-Type:
23
+ - application/json;charset=UTF-8
24
+ Transfer-Encoding:
25
+ - chunked
26
+ Connection:
27
+ - keep-alive
28
+ Access-Control-Allow-Origin:
29
+ - "*"
30
+ Pragma:
31
+ - no-cache
32
+ Cache-Control:
33
+ - no-cache, no-store, max-age=0
34
+ Expires:
35
+ - Thu, 01 Jan 1970 00:00:00 GMT
36
+ Content-Language:
37
+ - en-US
38
+ body:
39
+ encoding: UTF-8
40
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
41
+ http_version:
42
+ recorded_at: Tue, 26 Aug 2014 23:15:59 GMT
43
+ - request:
44
+ method: get
45
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=92689271310039026359&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409094967&oauth_version=1.0
46
+ body:
47
+ encoding: US-ASCII
48
+ string: ''
49
+ headers:
50
+ Authorization:
51
+ - oauth_version=1.0,oauth_timestamp=1409094967,oauth_nonce=92689271310039026359,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
52
+ realm=,oauth_signature=TmJYUstOFFD4NYxZWsEBKDMqxKg%3D
53
+ response:
54
+ status:
55
+ code: 200
56
+ message: OK
57
+ headers:
58
+ Server:
59
+ - nginx/1.4.7
60
+ Date:
61
+ - Tue, 26 Aug 2014 23:16:07 GMT
62
+ Content-Type:
63
+ - application/json;charset=UTF-8
64
+ Transfer-Encoding:
65
+ - chunked
66
+ Connection:
67
+ - keep-alive
68
+ Access-Control-Allow-Origin:
69
+ - "*"
70
+ Pragma:
71
+ - no-cache
72
+ Cache-Control:
73
+ - no-cache, no-store, max-age=0
74
+ Expires:
75
+ - Thu, 01 Jan 1970 00:00:00 GMT
76
+ Content-Language:
77
+ - en-US
78
+ body:
79
+ encoding: UTF-8
80
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
81
+ http_version:
82
+ recorded_at: Tue, 26 Aug 2014 23:16:07 GMT
83
+ - request:
84
+ method: get
85
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=26584783281786362647&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409094973&oauth_version=1.0
86
+ body:
87
+ encoding: US-ASCII
88
+ string: ''
89
+ headers:
90
+ Authorization:
91
+ - oauth_version=1.0,oauth_timestamp=1409094973,oauth_nonce=26584783281786362647,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
92
+ realm=,oauth_signature=Gjv55X06%2Bt13KP%2FnJ%2Bcsn%2FSqss4%3D
93
+ response:
94
+ status:
95
+ code: 200
96
+ message: OK
97
+ headers:
98
+ Server:
99
+ - nginx/1.4.7
100
+ Date:
101
+ - Tue, 26 Aug 2014 23:16:13 GMT
102
+ Content-Type:
103
+ - application/json;charset=UTF-8
104
+ Transfer-Encoding:
105
+ - chunked
106
+ Connection:
107
+ - keep-alive
108
+ Access-Control-Allow-Origin:
109
+ - "*"
110
+ Pragma:
111
+ - no-cache
112
+ Cache-Control:
113
+ - no-cache, no-store, max-age=0
114
+ Expires:
115
+ - Thu, 01 Jan 1970 00:00:00 GMT
116
+ Content-Language:
117
+ - en-US
118
+ body:
119
+ encoding: UTF-8
120
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
121
+ http_version:
122
+ recorded_at: Tue, 26 Aug 2014 23:16:13 GMT
123
+ - request:
124
+ method: get
125
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=key&oauth_nonce=04884788028488627343&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409095002&oauth_version=1.0
126
+ body:
127
+ encoding: US-ASCII
128
+ string: ''
129
+ headers:
130
+ Authorization:
131
+ - oauth_version=1.0,oauth_timestamp=1409095002,oauth_nonce=04884788028488627343,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=key,OAuth
132
+ realm=,oauth_signature=d4S%2BxQ1tMYpjSbnu%2FV2%2FgDrfLs0%3D
133
+ response:
134
+ status:
135
+ code: 401
136
+ message: Unauthorized
137
+ headers:
138
+ Server:
139
+ - nginx/1.4.7
140
+ Date:
141
+ - Tue, 26 Aug 2014 23:16:42 GMT
142
+ Content-Length:
143
+ - '22'
144
+ Connection:
145
+ - keep-alive
146
+ Access-Control-Allow-Origin:
147
+ - "*"
148
+ body:
149
+ encoding: UTF-8
150
+ string: Authentication failed.
151
+ http_version:
152
+ recorded_at: Tue, 26 Aug 2014 23:16:43 GMT
153
+ - request:
154
+ method: get
155
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=02430544894014414003&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409095032&oauth_version=1.0
156
+ body:
157
+ encoding: US-ASCII
158
+ string: ''
159
+ headers:
160
+ Authorization:
161
+ - oauth_version=1.0,oauth_timestamp=1409095032,oauth_nonce=02430544894014414003,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
162
+ realm=,oauth_signature=NPnVjmcoLb2rbGk5XHkwDTh30B0%3D
163
+ response:
164
+ status:
165
+ code: 200
166
+ message: OK
167
+ headers:
168
+ Server:
169
+ - nginx/1.4.7
170
+ Date:
171
+ - Tue, 26 Aug 2014 23:17:13 GMT
172
+ Content-Type:
173
+ - application/json;charset=UTF-8
174
+ Transfer-Encoding:
175
+ - chunked
176
+ Connection:
177
+ - keep-alive
178
+ Access-Control-Allow-Origin:
179
+ - "*"
180
+ Pragma:
181
+ - no-cache
182
+ Cache-Control:
183
+ - no-cache, no-store, max-age=0
184
+ Expires:
185
+ - Thu, 01 Jan 1970 00:00:00 GMT
186
+ Content-Language:
187
+ - en-US
188
+ body:
189
+ encoding: UTF-8
190
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
191
+ http_version:
192
+ recorded_at: Tue, 26 Aug 2014 23:17:13 GMT
193
+ - request:
194
+ method: get
195
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=04740007387324745318&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409095147&oauth_version=1.0
196
+ body:
197
+ encoding: US-ASCII
198
+ string: ''
199
+ headers:
200
+ Authorization:
201
+ - oauth_version=1.0,oauth_timestamp=1409095147,oauth_nonce=04740007387324745318,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
202
+ realm=,oauth_signature=58F1Ix%2BqAzl65PKIntKE5mmCE3c%3D
203
+ response:
204
+ status:
205
+ code: 200
206
+ message: OK
207
+ headers:
208
+ Server:
209
+ - nginx/1.4.7
210
+ Date:
211
+ - Tue, 26 Aug 2014 23:19:08 GMT
212
+ Content-Type:
213
+ - application/json;charset=UTF-8
214
+ Transfer-Encoding:
215
+ - chunked
216
+ Connection:
217
+ - keep-alive
218
+ Access-Control-Allow-Origin:
219
+ - "*"
220
+ Pragma:
221
+ - no-cache
222
+ Cache-Control:
223
+ - no-cache, no-store, max-age=0
224
+ Expires:
225
+ - Thu, 01 Jan 1970 00:00:00 GMT
226
+ Content-Language:
227
+ - en-US
228
+ body:
229
+ encoding: UTF-8
230
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
231
+ http_version:
232
+ recorded_at: Tue, 26 Aug 2014 23:19:08 GMT
233
+ - request:
234
+ method: get
235
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=89871568661574483398&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409095366&oauth_version=1.0
236
+ body:
237
+ encoding: US-ASCII
238
+ string: ''
239
+ headers:
240
+ Authorization:
241
+ - oauth_version=1.0,oauth_timestamp=1409095366,oauth_nonce=89871568661574483398,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
242
+ realm=,oauth_signature=h3Oh7Griprb5riuwr0O1w%2B3Z0NA%3D
243
+ response:
244
+ status:
245
+ code: 200
246
+ message: OK
247
+ headers:
248
+ Server:
249
+ - nginx/1.4.7
250
+ Date:
251
+ - Tue, 26 Aug 2014 23:22:46 GMT
252
+ Content-Type:
253
+ - application/json;charset=UTF-8
254
+ Transfer-Encoding:
255
+ - chunked
256
+ Connection:
257
+ - keep-alive
258
+ Access-Control-Allow-Origin:
259
+ - "*"
260
+ Pragma:
261
+ - no-cache
262
+ Cache-Control:
263
+ - no-cache, no-store, max-age=0
264
+ Expires:
265
+ - Thu, 01 Jan 1970 00:00:00 GMT
266
+ Content-Language:
267
+ - en-US
268
+ body:
269
+ encoding: UTF-8
270
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
271
+ http_version:
272
+ recorded_at: Tue, 26 Aug 2014 23:22:46 GMT
273
+ - request:
274
+ method: get
275
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=48219812671418229476&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409095439&oauth_version=1.0
276
+ body:
277
+ encoding: US-ASCII
278
+ string: ''
279
+ headers:
280
+ Authorization:
281
+ - oauth_version=1.0,oauth_timestamp=1409095439,oauth_nonce=48219812671418229476,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
282
+ realm=,oauth_signature=W15AprNfmjFdAIfCkNyUEyVuY4o%3D
283
+ response:
284
+ status:
285
+ code: 200
286
+ message: OK
287
+ headers:
288
+ Server:
289
+ - nginx/1.4.7
290
+ Date:
291
+ - Tue, 26 Aug 2014 23:24:00 GMT
292
+ Content-Type:
293
+ - application/json;charset=UTF-8
294
+ Transfer-Encoding:
295
+ - chunked
296
+ Connection:
297
+ - keep-alive
298
+ Access-Control-Allow-Origin:
299
+ - "*"
300
+ Pragma:
301
+ - no-cache
302
+ Cache-Control:
303
+ - no-cache, no-store, max-age=0
304
+ Expires:
305
+ - Thu, 01 Jan 1970 00:00:00 GMT
306
+ Content-Language:
307
+ - en-US
308
+ body:
309
+ encoding: UTF-8
310
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
311
+ http_version:
312
+ recorded_at: Tue, 26 Aug 2014 23:24:00 GMT
313
+ - request:
314
+ method: get
315
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=05203418101315542729&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409095476&oauth_version=1.0
316
+ body:
317
+ encoding: US-ASCII
318
+ string: ''
319
+ headers:
320
+ Authorization:
321
+ - oauth_version=1.0,oauth_timestamp=1409095476,oauth_nonce=05203418101315542729,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
322
+ realm=,oauth_signature=glJppry2NP7Bo3Ks1ryk9yo0Ba0%3D
323
+ response:
324
+ status:
325
+ code: 200
326
+ message: OK
327
+ headers:
328
+ Server:
329
+ - nginx/1.4.7
330
+ Date:
331
+ - Tue, 26 Aug 2014 23:24:36 GMT
332
+ Content-Type:
333
+ - application/json;charset=UTF-8
334
+ Transfer-Encoding:
335
+ - chunked
336
+ Connection:
337
+ - keep-alive
338
+ Access-Control-Allow-Origin:
339
+ - "*"
340
+ Pragma:
341
+ - no-cache
342
+ Cache-Control:
343
+ - no-cache, no-store, max-age=0
344
+ Expires:
345
+ - Thu, 01 Jan 1970 00:00:00 GMT
346
+ Content-Language:
347
+ - en-US
348
+ body:
349
+ encoding: UTF-8
350
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
351
+ http_version:
352
+ recorded_at: Tue, 26 Aug 2014 23:24:36 GMT
353
+ - request:
354
+ method: get
355
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=93595496368302134914&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409095521&oauth_version=1.0
356
+ body:
357
+ encoding: US-ASCII
358
+ string: ''
359
+ headers:
360
+ Authorization:
361
+ - oauth_version=1.0,oauth_timestamp=1409095521,oauth_nonce=93595496368302134914,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
362
+ realm=,oauth_signature=2uP40gw1Q4R2pjcuM8VugBMbhkg%3D
363
+ response:
364
+ status:
365
+ code: 200
366
+ message: OK
367
+ headers:
368
+ Server:
369
+ - nginx/1.4.7
370
+ Date:
371
+ - Tue, 26 Aug 2014 23:25:22 GMT
372
+ Content-Type:
373
+ - application/json;charset=UTF-8
374
+ Transfer-Encoding:
375
+ - chunked
376
+ Connection:
377
+ - keep-alive
378
+ Access-Control-Allow-Origin:
379
+ - "*"
380
+ Pragma:
381
+ - no-cache
382
+ Cache-Control:
383
+ - no-cache, no-store, max-age=0
384
+ Expires:
385
+ - Thu, 01 Jan 1970 00:00:00 GMT
386
+ Content-Language:
387
+ - en-US
388
+ body:
389
+ encoding: UTF-8
390
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
391
+ http_version:
392
+ recorded_at: Tue, 26 Aug 2014 23:25:22 GMT
393
+ - request:
394
+ method: get
395
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=34512735708711885841&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409095540&oauth_version=1.0
396
+ body:
397
+ encoding: US-ASCII
398
+ string: ''
399
+ headers:
400
+ Authorization:
401
+ - oauth_version=1.0,oauth_timestamp=1409095540,oauth_nonce=34512735708711885841,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
402
+ realm=,oauth_signature=ckxpVwaWTeFZO5A%2FPAPLkc0R8Dk%3D
403
+ response:
404
+ status:
405
+ code: 200
406
+ message: OK
407
+ headers:
408
+ Server:
409
+ - nginx/1.4.7
410
+ Date:
411
+ - Tue, 26 Aug 2014 23:25:40 GMT
412
+ Content-Type:
413
+ - application/json;charset=UTF-8
414
+ Transfer-Encoding:
415
+ - chunked
416
+ Connection:
417
+ - keep-alive
418
+ Access-Control-Allow-Origin:
419
+ - "*"
420
+ Pragma:
421
+ - no-cache
422
+ Cache-Control:
423
+ - no-cache, no-store, max-age=0
424
+ Expires:
425
+ - Thu, 01 Jan 1970 00:00:00 GMT
426
+ Content-Language:
427
+ - en-US
428
+ body:
429
+ encoding: UTF-8
430
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
431
+ http_version:
432
+ recorded_at: Tue, 26 Aug 2014 23:25:40 GMT
433
+ - request:
434
+ method: get
435
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=73341926387866165562&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409095815&oauth_version=1.0
436
+ body:
437
+ encoding: US-ASCII
438
+ string: ''
439
+ headers:
440
+ Authorization:
441
+ - oauth_version=1.0,oauth_timestamp=1409095815,oauth_nonce=73341926387866165562,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
442
+ realm=,oauth_signature=t5kUwBXgZFpl1PUKMOhw8PPXDoc%3D
443
+ response:
444
+ status:
445
+ code: 200
446
+ message: OK
447
+ headers:
448
+ Server:
449
+ - nginx/1.4.7
450
+ Date:
451
+ - Tue, 26 Aug 2014 23:30:16 GMT
452
+ Content-Type:
453
+ - application/json;charset=UTF-8
454
+ Transfer-Encoding:
455
+ - chunked
456
+ Connection:
457
+ - keep-alive
458
+ Access-Control-Allow-Origin:
459
+ - "*"
460
+ Pragma:
461
+ - no-cache
462
+ Cache-Control:
463
+ - no-cache, no-store, max-age=0
464
+ Expires:
465
+ - Thu, 01 Jan 1970 00:00:00 GMT
466
+ Content-Language:
467
+ - en-US
468
+ body:
469
+ encoding: UTF-8
470
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
471
+ http_version:
472
+ recorded_at: Tue, 26 Aug 2014 23:30:16 GMT
473
+ - request:
474
+ method: get
475
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=26287770526692795683&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409096006&oauth_version=1.0
476
+ body:
477
+ encoding: US-ASCII
478
+ string: ''
479
+ headers:
480
+ Authorization:
481
+ - oauth_version=1.0,oauth_timestamp=1409096006,oauth_nonce=26287770526692795683,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
482
+ realm=,oauth_signature=voVbYzet5ErRlZvN5liHI1sm7QU%3D
483
+ response:
484
+ status:
485
+ code: 200
486
+ message: OK
487
+ headers:
488
+ Server:
489
+ - nginx/1.4.7
490
+ Date:
491
+ - Tue, 26 Aug 2014 23:33:26 GMT
492
+ Content-Type:
493
+ - application/json;charset=UTF-8
494
+ Transfer-Encoding:
495
+ - chunked
496
+ Connection:
497
+ - keep-alive
498
+ Access-Control-Allow-Origin:
499
+ - "*"
500
+ Pragma:
501
+ - no-cache
502
+ Cache-Control:
503
+ - no-cache, no-store, max-age=0
504
+ Expires:
505
+ - Thu, 01 Jan 1970 00:00:00 GMT
506
+ Content-Language:
507
+ - en-US
508
+ body:
509
+ encoding: UTF-8
510
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
511
+ http_version:
512
+ recorded_at: Tue, 26 Aug 2014 23:33:27 GMT
513
+ - request:
514
+ method: get
515
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=30530694027574447408&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409096036&oauth_version=1.0
516
+ body:
517
+ encoding: US-ASCII
518
+ string: ''
519
+ headers:
520
+ Authorization:
521
+ - oauth_version=1.0,oauth_timestamp=1409096036,oauth_nonce=30530694027574447408,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
522
+ realm=,oauth_signature=Vv2a2QCoATzG3Z82VeuCNODutDw%3D
523
+ response:
524
+ status:
525
+ code: 200
526
+ message: OK
527
+ headers:
528
+ Server:
529
+ - nginx/1.4.7
530
+ Date:
531
+ - Tue, 26 Aug 2014 23:33:57 GMT
532
+ Content-Type:
533
+ - application/json;charset=UTF-8
534
+ Transfer-Encoding:
535
+ - chunked
536
+ Connection:
537
+ - keep-alive
538
+ Access-Control-Allow-Origin:
539
+ - "*"
540
+ Pragma:
541
+ - no-cache
542
+ Cache-Control:
543
+ - no-cache, no-store, max-age=0
544
+ Expires:
545
+ - Thu, 01 Jan 1970 00:00:00 GMT
546
+ Content-Language:
547
+ - en-US
548
+ body:
549
+ encoding: UTF-8
550
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
551
+ http_version:
552
+ recorded_at: Tue, 26 Aug 2014 23:33:57 GMT
553
+ - request:
554
+ method: get
555
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=75423296049935069753&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409096047&oauth_version=1.0
556
+ body:
557
+ encoding: US-ASCII
558
+ string: ''
559
+ headers:
560
+ Authorization:
561
+ - oauth_version=1.0,oauth_timestamp=1409096047,oauth_nonce=75423296049935069753,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
562
+ realm=,oauth_signature=F3Any6p9vkOHJXL1kR1SP2GAyts%3D
563
+ response:
564
+ status:
565
+ code: 200
566
+ message: OK
567
+ headers:
568
+ Server:
569
+ - nginx/1.4.7
570
+ Date:
571
+ - Tue, 26 Aug 2014 23:34:08 GMT
572
+ Content-Type:
573
+ - application/json;charset=UTF-8
574
+ Transfer-Encoding:
575
+ - chunked
576
+ Connection:
577
+ - keep-alive
578
+ Access-Control-Allow-Origin:
579
+ - "*"
580
+ Pragma:
581
+ - no-cache
582
+ Cache-Control:
583
+ - no-cache, no-store, max-age=0
584
+ Expires:
585
+ - Thu, 01 Jan 1970 00:00:00 GMT
586
+ Content-Language:
587
+ - en-US
588
+ body:
589
+ encoding: UTF-8
590
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
591
+ http_version:
592
+ recorded_at: Tue, 26 Aug 2014 23:34:08 GMT
593
+ - request:
594
+ method: get
595
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=49662271648653688137&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409096052&oauth_version=1.0
596
+ body:
597
+ encoding: US-ASCII
598
+ string: ''
599
+ headers:
600
+ Authorization:
601
+ - oauth_version=1.0,oauth_timestamp=1409096052,oauth_nonce=49662271648653688137,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
602
+ realm=,oauth_signature=5A675%2Bv%2Fz32%2F1Jl7u8Cm9mY3MFI%3D
603
+ response:
604
+ status:
605
+ code: 200
606
+ message: OK
607
+ headers:
608
+ Server:
609
+ - nginx/1.4.7
610
+ Date:
611
+ - Tue, 26 Aug 2014 23:34:13 GMT
612
+ Content-Type:
613
+ - application/json;charset=UTF-8
614
+ Transfer-Encoding:
615
+ - chunked
616
+ Connection:
617
+ - keep-alive
618
+ Access-Control-Allow-Origin:
619
+ - "*"
620
+ Pragma:
621
+ - no-cache
622
+ Cache-Control:
623
+ - no-cache, no-store, max-age=0
624
+ Expires:
625
+ - Thu, 01 Jan 1970 00:00:00 GMT
626
+ Content-Language:
627
+ - en-US
628
+ body:
629
+ encoding: UTF-8
630
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
631
+ http_version:
632
+ recorded_at: Tue, 26 Aug 2014 23:34:13 GMT
633
+ - request:
634
+ method: get
635
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=15525110829255171893&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409096160&oauth_version=1.0
636
+ body:
637
+ encoding: US-ASCII
638
+ string: ''
639
+ headers:
640
+ Authorization:
641
+ - oauth_version=1.0,oauth_timestamp=1409096160,oauth_nonce=15525110829255171893,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
642
+ realm=,oauth_signature=CUgUVYKUqhAz55n5oMRBuSpxTYY%3D
643
+ response:
644
+ status:
645
+ code: 200
646
+ message: OK
647
+ headers:
648
+ Server:
649
+ - nginx/1.4.7
650
+ Date:
651
+ - Tue, 26 Aug 2014 23:36:00 GMT
652
+ Content-Type:
653
+ - application/json;charset=UTF-8
654
+ Transfer-Encoding:
655
+ - chunked
656
+ Connection:
657
+ - keep-alive
658
+ Access-Control-Allow-Origin:
659
+ - "*"
660
+ Pragma:
661
+ - no-cache
662
+ Cache-Control:
663
+ - no-cache, no-store, max-age=0
664
+ Expires:
665
+ - Thu, 01 Jan 1970 00:00:00 GMT
666
+ Content-Language:
667
+ - en-US
668
+ body:
669
+ encoding: UTF-8
670
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
671
+ http_version:
672
+ recorded_at: Tue, 26 Aug 2014 23:36:01 GMT
673
+ - request:
674
+ method: get
675
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=36688112934435292813&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409096181&oauth_version=1.0
676
+ body:
677
+ encoding: US-ASCII
678
+ string: ''
679
+ headers:
680
+ Authorization:
681
+ - oauth_version=1.0,oauth_timestamp=1409096181,oauth_nonce=36688112934435292813,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
682
+ realm=,oauth_signature=G9E40U%2FBM4AFw7SkSBpKaGqYK4M%3D
683
+ response:
684
+ status:
685
+ code: 200
686
+ message: OK
687
+ headers:
688
+ Server:
689
+ - nginx/1.4.7
690
+ Date:
691
+ - Tue, 26 Aug 2014 23:36:22 GMT
692
+ Content-Type:
693
+ - application/json;charset=UTF-8
694
+ Transfer-Encoding:
695
+ - chunked
696
+ Connection:
697
+ - keep-alive
698
+ Access-Control-Allow-Origin:
699
+ - "*"
700
+ Pragma:
701
+ - no-cache
702
+ Cache-Control:
703
+ - no-cache, no-store, max-age=0
704
+ Expires:
705
+ - Thu, 01 Jan 1970 00:00:00 GMT
706
+ Content-Language:
707
+ - en-US
708
+ body:
709
+ encoding: UTF-8
710
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
711
+ http_version:
712
+ recorded_at: Tue, 26 Aug 2014 23:36:22 GMT
713
+ - request:
714
+ method: get
715
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=89180913420261579324&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409096204&oauth_version=1.0
716
+ body:
717
+ encoding: US-ASCII
718
+ string: ''
719
+ headers:
720
+ Authorization:
721
+ - oauth_version=1.0,oauth_timestamp=1409096204,oauth_nonce=89180913420261579324,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
722
+ realm=,oauth_signature=sIhqPZKtgNgI2LZvo6Jxz3Zykfc%3D
723
+ response:
724
+ status:
725
+ code: 200
726
+ message: OK
727
+ headers:
728
+ Server:
729
+ - nginx/1.4.7
730
+ Date:
731
+ - Tue, 26 Aug 2014 23:36:45 GMT
732
+ Content-Type:
733
+ - application/json;charset=UTF-8
734
+ Transfer-Encoding:
735
+ - chunked
736
+ Connection:
737
+ - keep-alive
738
+ Access-Control-Allow-Origin:
739
+ - "*"
740
+ Pragma:
741
+ - no-cache
742
+ Cache-Control:
743
+ - no-cache, no-store, max-age=0
744
+ Expires:
745
+ - Thu, 01 Jan 1970 00:00:00 GMT
746
+ Content-Language:
747
+ - en-US
748
+ body:
749
+ encoding: UTF-8
750
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
751
+ http_version:
752
+ recorded_at: Tue, 26 Aug 2014 23:36:45 GMT
753
+ - request:
754
+ method: get
755
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=70749283512572747284&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409096247&oauth_version=1.0
756
+ body:
757
+ encoding: US-ASCII
758
+ string: ''
759
+ headers:
760
+ Authorization:
761
+ - oauth_version=1.0,oauth_timestamp=1409096247,oauth_nonce=70749283512572747284,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
762
+ realm=,oauth_signature=PPCNB43qAmgI6MpvGt8Lr%2Fpm9sA%3D
763
+ response:
764
+ status:
765
+ code: 200
766
+ message: OK
767
+ headers:
768
+ Server:
769
+ - nginx/1.4.7
770
+ Date:
771
+ - Tue, 26 Aug 2014 23:37:28 GMT
772
+ Content-Type:
773
+ - application/json;charset=UTF-8
774
+ Transfer-Encoding:
775
+ - chunked
776
+ Connection:
777
+ - keep-alive
778
+ Access-Control-Allow-Origin:
779
+ - "*"
780
+ Pragma:
781
+ - no-cache
782
+ Cache-Control:
783
+ - no-cache, no-store, max-age=0
784
+ Expires:
785
+ - Thu, 01 Jan 1970 00:00:00 GMT
786
+ Content-Language:
787
+ - en-US
788
+ body:
789
+ encoding: UTF-8
790
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
791
+ http_version:
792
+ recorded_at: Tue, 26 Aug 2014 23:37:28 GMT
793
+ - request:
794
+ method: get
795
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=03985876376115050769&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409096338&oauth_version=1.0
796
+ body:
797
+ encoding: US-ASCII
798
+ string: ''
799
+ headers:
800
+ Authorization:
801
+ - oauth_version=1.0,oauth_timestamp=1409096338,oauth_nonce=03985876376115050769,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
802
+ realm=,oauth_signature=8hZY17O1YCkbjTv5O33JiC5PdnM%3D
803
+ response:
804
+ status:
805
+ code: 200
806
+ message: OK
807
+ headers:
808
+ Server:
809
+ - nginx/1.4.7
810
+ Date:
811
+ - Tue, 26 Aug 2014 23:38:59 GMT
812
+ Content-Type:
813
+ - application/json;charset=UTF-8
814
+ Transfer-Encoding:
815
+ - chunked
816
+ Connection:
817
+ - keep-alive
818
+ Access-Control-Allow-Origin:
819
+ - "*"
820
+ Pragma:
821
+ - no-cache
822
+ Cache-Control:
823
+ - no-cache, no-store, max-age=0
824
+ Expires:
825
+ - Thu, 01 Jan 1970 00:00:00 GMT
826
+ Content-Language:
827
+ - en-US
828
+ body:
829
+ encoding: UTF-8
830
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
831
+ http_version:
832
+ recorded_at: Tue, 26 Aug 2014 23:38:59 GMT
833
+ - request:
834
+ method: get
835
+ uri: https://api35.semantria.com/status.json?oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1&oauth_nonce=49963255923627905204&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1409096379&oauth_version=1.0
836
+ body:
837
+ encoding: US-ASCII
838
+ string: ''
839
+ headers:
840
+ Authorization:
841
+ - oauth_version=1.0,oauth_timestamp=1409096379,oauth_nonce=49963255923627905204,oauth_signature_method=HMAC-SHA1,oauth_consumer_key=9d205eae-9c7f-4442-92b0-c9aaef1f20e1,OAuth
842
+ realm=,oauth_signature=KEa%2F1iZjEN8Gu8r%2FSq7nYgo1WHM%3D
843
+ response:
844
+ status:
845
+ code: 200
846
+ message: OK
847
+ headers:
848
+ Server:
849
+ - nginx/1.4.7
850
+ Date:
851
+ - Tue, 26 Aug 2014 23:39:39 GMT
852
+ Content-Type:
853
+ - application/json;charset=UTF-8
854
+ Transfer-Encoding:
855
+ - chunked
856
+ Connection:
857
+ - keep-alive
858
+ Access-Control-Allow-Origin:
859
+ - "*"
860
+ Pragma:
861
+ - no-cache
862
+ Cache-Control:
863
+ - no-cache, no-store, max-age=0
864
+ Expires:
865
+ - Thu, 01 Jan 1970 00:00:00 GMT
866
+ Content-Language:
867
+ - en-US
868
+ body:
869
+ encoding: UTF-8
870
+ string: '{"api_version":"3.55","service_version":"3.5.5.732","service_status":"available","supported_encoding":"UTF-8","supported_compression":"gzip,deflate","supported_languages":["English","French","Spanish","Portuguese","German","Chinese","Italian","Korean"]}'
871
+ http_version:
872
+ recorded_at: Tue, 26 Aug 2014 23:39:40 GMT
873
+ recorded_with: VCR 2.9.2