maltese 0.2.2 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +18 -19
- data/lib/maltese/sitemap.rb +8 -14
- data/lib/maltese/version.rb +1 -1
- data/lib/maltese.rb +1 -1
- data/maltese.gemspec +1 -1
- data/spec/cli_spec.rb +2 -2
- data/spec/fixtures/vcr_cassettes/Maltese_CLI/sitemap/should_succeed.yml +36 -63
- data/spec/fixtures/vcr_cassettes/Maltese_CLI/sitemap/should_succeed_with_no_works.yml +3 -3
- data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/get_data/should_report_if_there_are_no_works_returned_by_the_Datacite_Solr_API.yml +2 -2
- data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/get_data/should_report_if_there_are_works_returned_by_the_Datacite_Solr_API.yml +4 -4
- data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/get_total/with_no_works.yml +3 -3
- data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/get_total/with_works.yml +4 -4
- data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/push_data/should_report_if_there_are_no_works_returned_by_the_Datacite_Solr_API.yml +30 -57
- data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/push_data/should_report_if_there_are_works_returned_by_the_Datacite_Solr_API.yml +30 -57
- data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/queue_jobs/should_report_if_there_are_no_works_returned_by_the_Datacite_Solr_API.yml +2 -2
- data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/queue_jobs/should_report_if_there_are_works_returned_by_the_Datacite_Solr_API.yml +37 -178
- data/spec/sitemap_spec.rb +13 -10
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bcfe2a15bddda80ac36262316760ca06315a0576888b969daea88a257b9ce86a
|
4
|
+
data.tar.gz: 780dbe2584ce57bff2aa913d1f81b8a668f1986ad49ed22c5f591da20090e4ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71242f7fd1d0429b5086caec9eee07e94e969f645f59ffd348ff094ef39b4cd8bca04cbffc153a4badc271767773fd608baaf78a890280f1970fe3a454b5fac2
|
7
|
+
data.tar.gz: e03b1f5a35c2b6cc1e647a3de2e27b6a62a88a7c0419a98ec73711d2f7f8d0ae01ed9a8379f867c54ce418e1e655ffdd60379411f4707e5cc4f0e7cd4f74f48e
|
data/Gemfile.lock
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
maltese (0.2.
|
4
|
+
maltese (0.2.4)
|
5
5
|
activesupport (>= 4.2.5, < 6)
|
6
|
+
aws-sdk-s3 (~> 1.19)
|
6
7
|
dotenv (~> 2.1, >= 2.1.1)
|
7
|
-
fog-aws (~> 0.7.6)
|
8
8
|
maremma (~> 4.1)
|
9
9
|
mime-types (~> 3.1)
|
10
10
|
sitemap_generator (~> 6.0)
|
@@ -20,6 +20,21 @@ GEM
|
|
20
20
|
tzinfo (~> 1.1)
|
21
21
|
addressable (2.5.2)
|
22
22
|
public_suffix (>= 2.0.2, < 4.0)
|
23
|
+
aws-eventstream (1.0.1)
|
24
|
+
aws-partitions (1.103.0)
|
25
|
+
aws-sdk-core (3.27.0)
|
26
|
+
aws-eventstream (~> 1.0)
|
27
|
+
aws-partitions (~> 1.0)
|
28
|
+
aws-sigv4 (~> 1.0)
|
29
|
+
jmespath (~> 1.0)
|
30
|
+
aws-sdk-kms (1.9.0)
|
31
|
+
aws-sdk-core (~> 3, >= 3.26.0)
|
32
|
+
aws-sigv4 (~> 1.0)
|
33
|
+
aws-sdk-s3 (1.19.0)
|
34
|
+
aws-sdk-core (~> 3, >= 3.26.0)
|
35
|
+
aws-sdk-kms (~> 1)
|
36
|
+
aws-sigv4 (~> 1.0)
|
37
|
+
aws-sigv4 (1.0.3)
|
23
38
|
builder (3.2.3)
|
24
39
|
codeclimate-test-reporter (1.0.8)
|
25
40
|
simplecov (<= 0.13)
|
@@ -36,26 +51,10 @@ GEM
|
|
36
51
|
faraday
|
37
52
|
faraday_middleware (0.12.2)
|
38
53
|
faraday (>= 0.7.4, < 1.0)
|
39
|
-
fog-aws (0.7.6)
|
40
|
-
fog-core (~> 1.27)
|
41
|
-
fog-json (~> 1.0)
|
42
|
-
fog-xml (~> 0.1)
|
43
|
-
ipaddress (~> 0.8)
|
44
|
-
fog-core (1.45.0)
|
45
|
-
builder
|
46
|
-
excon (~> 0.58)
|
47
|
-
formatador (~> 0.2)
|
48
|
-
fog-json (1.2.0)
|
49
|
-
fog-core
|
50
|
-
multi_json (~> 1.10)
|
51
|
-
fog-xml (0.1.3)
|
52
|
-
fog-core
|
53
|
-
nokogiri (>= 1.5.11, < 2.0.0)
|
54
|
-
formatador (0.2.5)
|
55
54
|
hashdiff (0.3.7)
|
56
55
|
i18n (1.1.0)
|
57
56
|
concurrent-ruby (~> 1.0)
|
58
|
-
|
57
|
+
jmespath (1.4.0)
|
59
58
|
json (2.1.0)
|
60
59
|
maremma (4.1.1)
|
61
60
|
activesupport (>= 4.2.5, < 6)
|
data/lib/maltese/sitemap.rb
CHANGED
@@ -18,7 +18,7 @@ module Maltese
|
|
18
18
|
end
|
19
19
|
|
20
20
|
def initialize(attributes={})
|
21
|
-
@sitemap_bucket = attributes[:sitemap_bucket].presence || "
|
21
|
+
@sitemap_bucket = attributes[:sitemap_bucket].presence || "search.test.datacite.org"
|
22
22
|
@from_date = attributes[:from_date].presence || (Time.now.to_date - 1.day).iso8601
|
23
23
|
@until_date = attributes[:until_date].presence || Time.now.to_date.iso8601
|
24
24
|
@solr_username = ENV['SOLR_USERNAME']
|
@@ -29,6 +29,10 @@ module Maltese
|
|
29
29
|
ENV['RACK_ENV'] == "production" ? "https://search.datacite.org/" : "https://search.test.datacite.org/"
|
30
30
|
end
|
31
31
|
|
32
|
+
def sitemaps_path
|
33
|
+
"sitemaps/"
|
34
|
+
end
|
35
|
+
|
32
36
|
def search_path
|
33
37
|
ENV['RACK_ENV'] == "production" ? "https://solr.datacite.org/api?" : "https://solr.test.datacite.org/api?"
|
34
38
|
end
|
@@ -45,23 +49,16 @@ module Maltese
|
|
45
49
|
@sitemap ||= SitemapGenerator::LinkSet.new(
|
46
50
|
default_host: sitemap_url,
|
47
51
|
sitemaps_host: sitemap_url,
|
52
|
+
sitemaps_path: sitemaps_path,
|
48
53
|
adapter: s3_adapter,
|
49
54
|
finalize: false)
|
50
55
|
end
|
51
56
|
|
52
57
|
def s3_adapter
|
53
|
-
SitemapGenerator::
|
58
|
+
SitemapGenerator::AwsSdkAdapter.new(sitemap_bucket,
|
54
59
|
aws_access_key_id: ENV['AWS_ACCESS_KEY_ID'],
|
55
60
|
aws_secret_access_key: ENV['AWS_SECRET_ACCESS_KEY'],
|
56
|
-
|
57
|
-
fog_directory: sitemap_bucket,
|
58
|
-
path_style: true)
|
59
|
-
end
|
60
|
-
|
61
|
-
def fog_storage
|
62
|
-
Fog::Storage.new(provider: 'AWS',
|
63
|
-
aws_access_key_id: ENV['AWS_ACCESS_KEY_ID'],
|
64
|
-
aws_secret_access_key: ENV['AWS_SECRET_ACCESS_KEY'])
|
61
|
+
aws_region: ENV['AWS_REGION'])
|
65
62
|
end
|
66
63
|
|
67
64
|
def queue_jobs(options={})
|
@@ -139,9 +136,6 @@ module Maltese
|
|
139
136
|
end
|
140
137
|
|
141
138
|
def push_data(options={})
|
142
|
-
# sync time with AWS S3 before uploading
|
143
|
-
fog_storage.sync_clock
|
144
|
-
|
145
139
|
sitemap.finalize!
|
146
140
|
options[:start_time] ||= Time.now
|
147
141
|
sitemap.sitemap_index.stats_summary(:time_taken => Time.now - options[:start_time])
|
data/lib/maltese/version.rb
CHANGED
data/lib/maltese.rb
CHANGED
data/maltese.gemspec
CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
20
20
|
s.add_dependency 'dotenv', '~> 2.1', '>= 2.1.1'
|
21
21
|
s.add_dependency 'thor', '~> 0.19'
|
22
22
|
s.add_dependency 'sitemap_generator', '~> 6.0'
|
23
|
-
s.add_dependency '
|
23
|
+
s.add_dependency 'aws-sdk-s3', '~> 1.19'
|
24
24
|
s.add_dependency 'mime-types', '~> 3.1'
|
25
25
|
s.add_development_dependency 'bundler', '~> 1.0'
|
26
26
|
s.add_development_dependency 'rspec', '~> 3.4'
|
data/spec/cli_spec.rb
CHANGED
@@ -8,7 +8,7 @@ describe Maltese::CLI do
|
|
8
8
|
|
9
9
|
let(:from_date) { "2018-03-15" }
|
10
10
|
let(:until_date) { "2018-04-08" }
|
11
|
-
let(:sitemap_bucket) { "
|
11
|
+
let(:sitemap_bucket) { "search.test.datacite.org" }
|
12
12
|
let(:cli_options) { { sitemap_bucket: sitemap_bucket,
|
13
13
|
from_date: from_date,
|
14
14
|
until_date: until_date } }
|
@@ -17,7 +17,7 @@ describe Maltese::CLI do
|
|
17
17
|
it 'should succeed' do
|
18
18
|
subject.options = cli_options
|
19
19
|
expect { subject.sitemap }.to output(/266 links/).to_stdout
|
20
|
-
sitemap = Zlib::GzipReader.open("public/sitemap.xml.gz") { |gz| gz.read }
|
20
|
+
sitemap = Zlib::GzipReader.open("public/sitemaps/sitemap.xml.gz") { |gz| gz.read }
|
21
21
|
doc = Nokogiri::XML(sitemap)
|
22
22
|
expect(doc.xpath("//xmlns:url").size).to eq(266)
|
23
23
|
expect(doc.xpath("//xmlns:loc").last.text).to eq("https://search.test.datacite.org/works/10.0133/37522")
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
message: OK
|
20
20
|
headers:
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Sun, 09 Sep 2018 05:56:17 GMT
|
23
23
|
Content-Type:
|
24
24
|
- application/json;charset=UTF-8
|
25
25
|
Connection:
|
@@ -36,11 +36,11 @@ http_interactions:
|
|
36
36
|
- DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization
|
37
37
|
body:
|
38
38
|
encoding: ASCII-8BIT
|
39
|
-
string: '{"responseHeader":{"status":0,"QTime":
|
39
|
+
string: '{"responseHeader":{"status":0,"QTime":3},"response":{"numFound":265,"start":0,"docs":[]}}
|
40
40
|
|
41
41
|
'
|
42
42
|
http_version:
|
43
|
-
recorded_at:
|
43
|
+
recorded_at: Sun, 09 Sep 2018 05:56:17 GMT
|
44
44
|
- request:
|
45
45
|
method: get
|
46
46
|
uri: https://solr.test.datacite.org/api?fl=doi,updated&fq=updated:%5B2018-03-15T00:00:00Z%20TO%202018-04-08T23:59:59Z%5D%20AND%20has_metadata:true%20AND%20is_active:true&q=*:*&rows=50000&sort=updated%20asc&start=0&wt=json
|
@@ -60,7 +60,7 @@ http_interactions:
|
|
60
60
|
message: OK
|
61
61
|
headers:
|
62
62
|
Date:
|
63
|
-
-
|
63
|
+
- Sun, 09 Sep 2018 05:56:17 GMT
|
64
64
|
Content-Type:
|
65
65
|
- application/json;charset=UTF-8
|
66
66
|
Connection:
|
@@ -77,92 +77,65 @@ http_interactions:
|
|
77
77
|
- DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization
|
78
78
|
body:
|
79
79
|
encoding: ASCII-8BIT
|
80
|
-
string: '{"responseHeader":{"status":0,"QTime":0},"response":{"numFound":265,"start":0,"docs":[{"updated":"2018-03-15T09:57:00Z","doi":"10.0133/1521107796250"},{"updated":"2018-03-15T09:58:59Z","doi":"10.0133/36983"},{"updated":"2018-03-15T10:03:15Z","doi":"10.0133/36990"},{"updated":"2018-03-15T10:20:22Z","doi":"10.0133/36974"},{"updated":"2018-03-15T10:28:52Z","doi":"10.0133/36991"},{"updated":"2018-03-15T10:28:55Z","doi":"10.0133/36992"},{"updated":"2018-03-15T10:30:52Z","doi":"10.0133/36994"},{"updated":"2018-03-15T11:43:27Z","doi":"10.25499/V3CQF9MP9PGHVMKOK4BGVESQRG"},{"updated":"2018-03-15T11:55:18Z","doi":"10.4124/TBD6DFCNV7.1"},{"updated":"2018-03-15T12:01:51Z","doi":"10.25499/NN6XPZMCAWFYE4C4U24AVM7UYC"},{"updated":"2018-03-15T12:02:33Z","doi":"10.25499/B7TDRUIIUOBMEYTAI2D2OQISUF"},{"updated":"2018-03-15T12:02:35Z","doi":"10.25499/9PPX2HMEIRM5V9XNVWSK4DPZHE"},{"updated":"2018-03-15T14:04:26Z","doi":"10.25499/YY6HMZZCJQ4IVAPIJ2V6VB3VFG"},{"updated":"2018-03-15T14:04:45Z","doi":"10.25499/32WT74C59PV5E6K2T6V5DCRBAF"},{"updated":"2018-03-15T14:04:47Z","doi":"10.25499/XZWXOIDVE799VCX5MF3RO23SIG"},{"updated":"2018-03-15T14:54:02Z","doi":"10.25499/FINYT33PBFCBENX9CTFEDYGBYH"},{"updated":"2018-03-15T15:24:41Z","doi":"10.4124/TEST31174"},{"updated":"2018-03-15T17:51:54Z","doi":"10.4124/TEST90956"},{"updated":"2018-03-15T17:52:36Z","doi":"10.4124/TEST93333"},{"updated":"2018-03-15T17:53:16Z","doi":"10.4124/TEST41361"},{"updated":"2018-03-15T18:13:06Z","doi":"10.4124/TEST25895"},{"updated":"2018-03-15T18:15:31Z","doi":"10.4124/TEST10959"},{"updated":"2018-03-15T18:16:19Z","doi":"10.4124/TEST12971"},{"updated":"2018-03-15T18:17:38Z","doi":"10.4124/TEST68679"},{"updated":"2018-03-16T10:02:53Z","doi":"10.0133/1521194550071"},{"updated":"2018-03-16T10:04:32Z","doi":"10.0133/37003"},{"updated":"2018-03-16T10:08:19Z","doi":"10.0133/37010"},{"updated":"2018-03-16T10:30:53Z","doi":"10.0133/37012"},{"updated":"2018-03-16T10:30:56Z","doi":"10.0133/37011"},{"updated":"2018-03-16T10:32:52Z","doi":"10.0133/37014"},{"updated":"2018-03-16T13:24:53Z","doi":"10.0133/37017"},{"updated":"2018-03-16T13:26:52Z","doi":"10.0133/37018"},{"updated":"2018-03-16T15:58:49Z","doi":"10.4124/M5VRJ5JDH8.1"},{"updated":"2018-03-16T16:20:06Z","doi":"10.4124/ZBWBRNY7VW.1"},{"updated":"2018-03-16T16:55:39Z","doi":"10.4124/VBZNB7MDHD.1"},{"updated":"2018-03-16T19:11:13Z","doi":"10.24354/8C97KQ405"},{"updated":"2018-03-16T19:45:34Z","doi":"10.24354/T722H880Z"},{"updated":"2018-03-18T07:16:53Z","doi":"10.0133/1521357387134"},{"updated":"2018-03-18T07:21:38Z","doi":"10.0133/37025"},{"updated":"2018-03-18T07:29:23Z","doi":"10.0133/37032"},{"updated":"2018-03-18T07:35:40Z","doi":"10.0133/1521358516729"},{"updated":"2018-03-18T07:38:24Z","doi":"10.0133/37039"},{"updated":"2018-03-18T07:44:06Z","doi":"10.0133/37046"},{"updated":"2018-03-18T08:10:54Z","doi":"10.0133/37048"},{"updated":"2018-03-18T08:10:56Z","doi":"10.0133/37047"},{"updated":"2018-03-18T08:12:52Z","doi":"10.0133/37050"},{"updated":"2018-03-18T08:40:54Z","doi":"10.0133/37053"},{"updated":"2018-03-18T08:42:52Z","doi":"10.0133/37056"},{"updated":"2018-03-18T08:42:54Z","doi":"10.0133/37054"},{"updated":"2018-03-18T21:36:52Z","doi":"10.25499/RWGAYBZUGR23V4TFCB6NRXB5IC"},{"updated":"2018-03-19T08:46:20Z","doi":"10.0133/1521449157387"},{"updated":"2018-03-19T08:48:03Z","doi":"10.0133/37065"},{"updated":"2018-03-19T08:51:51Z","doi":"10.0133/37072"},{"updated":"2018-03-19T13:28:54Z","doi":"10.0133/37074"},{"updated":"2018-03-19T14:47:13Z","doi":"10.0133/1521470737379"},{"updated":"2018-03-19T14:48:54Z","doi":"10.0133/37083"},{"updated":"2018-03-19T14:52:16Z","doi":"10.0133/37090"},{"updated":"2018-03-20T10:17:01Z","doi":"10.18711/OQC0TZO1"},{"updated":"2018-03-20T10:36:29Z","doi":"10.18711/XO8BKEMO"},{"updated":"2018-03-20T10:55:22Z","doi":"10.5256/F1000RESEARCH.62588.R16484"},{"updated":"2018-03-20T11:05:22Z","doi":"10.5256/F1000RESEARCH.62588.R16485"},{"updated":"2018-03-20T11:05:22Z","doi":"10.5256/F1000RESEARCH.62588.R16486"},{"updated":"2018-03-20T11:05:22Z","doi":"10.5256/F1000RESEARCH.62588.R16487"},{"updated":"2018-03-20T11:15:22Z","doi":"10.5256/F1000RESEARCH.62714.R16492"},{"updated":"2018-03-20T11:45:22Z","doi":"10.5256/F1000RESEARCH.62714.R16489"},{"updated":"2018-03-20T12:20:22Z","doi":"10.21956/GATESOPENRES.537.R357"},{"updated":"2018-03-20T12:20:22Z","doi":"10.21956/GATESOPENRES.537.R358"},{"updated":"2018-03-20T12:50:33Z","doi":"10.18711/362RN2U1"},{"updated":"2018-03-20T13:00:40Z","doi":"10.18711/GZVK8KT6"},{"updated":"2018-03-20T14:36:49Z","doi":"10.18711/JSYB6GEY"},{"updated":"2018-03-20T15:18:01Z","doi":"10.18711/JJED9J3P"},{"updated":"2018-03-20T15:43:48Z","doi":"10.4124/930C0D94-F524-49FC-AAD8-3565B512D595"},{"updated":"2018-03-20T15:59:20Z","doi":"10.4124/A330D8B8-8903-4340-82F9-373883FBF6AE"},{"updated":"2018-03-20T16:19:44Z","doi":"10.18711/ALLAB15M"},{"updated":"2018-03-21T08:56:54Z","doi":"10.0133/37094"},{"updated":"2018-03-21T10:10:42Z","doi":"10.18711/OPB2KK4W"},{"updated":"2018-03-21T10:15:13Z","doi":"10.18711/0JDFNQ2C"},{"updated":"2018-03-21T10:39:50Z","doi":"10.0133/1521628766400"},{"updated":"2018-03-21T10:41:52Z","doi":"10.0133/37102"},{"updated":"2018-03-21T10:45:55Z","doi":"10.0133/37109"},{"updated":"2018-03-21T11:14:54Z","doi":"10.0133/37110"},{"updated":"2018-03-21T14:35:51Z","doi":"10.4124/TEST52413"},{"updated":"2018-03-21T14:41:40Z","doi":"10.0133/1521643275128"},{"updated":"2018-03-21T14:43:19Z","doi":"10.0133/37119"},{"updated":"2018-03-21T14:48:11Z","doi":"10.0133/37126"},{"updated":"2018-03-21T14:49:49Z","doi":"10.4124/TEST52414"},{"updated":"2018-03-21T14:51:05Z","doi":"10.0133/1521643765524"},{"updated":"2018-03-21T14:52:56Z","doi":"10.0133/37133"},{"updated":"2018-03-21T14:56:50Z","doi":"10.0133/37140"},{"updated":"2018-03-21T15:26:26Z","doi":"10.25620/ICIBER.ISSN.1476-4687"},{"updated":"2018-03-21T16:22:42Z","doi":"10.4124/55YP43BPKS.1"},{"updated":"2018-03-21T16:22:58Z","doi":"10.4124/55YP43BPKS.2"},{"updated":"2018-03-21T16:34:52Z","doi":"10.4124/XNFJTJJXGJ.1"},{"updated":"2018-03-21T16:46:35Z","doi":"10.4124/XNFJTJJXGJ.2"},{"updated":"2018-03-21T17:02:42Z","doi":"10.4124/XNFJTJJXGJ.3"},{"updated":"2018-03-21T19:58:36Z","doi":"10.18711/X56MF6P7"},{"updated":"2018-03-22T10:55:22Z","doi":"10.5256/F1000RESEARCH.63076.R16503"},{"updated":"2018-03-22T11:10:22Z","doi":"10.5256/F1000RESEARCH.63076.R16504"},{"updated":"2018-03-22T11:15:22Z","doi":"10.5256/F1000RESEARCH.63076.R16506"},{"updated":"2018-03-22T11:40:22Z","doi":"10.5256/F1000RESEARCH.63085.R16510"},{"updated":"2018-03-22T11:50:22Z","doi":"10.21956/GATESOPENRES.553.R456"},{"updated":"2018-03-22T11:55:22Z","doi":"10.21956/GATESOPENRES.553.R457"},{"updated":"2018-03-22T12:05:22Z","doi":"10.21956/GATESOPENRES.1120.R461"},{"updated":"2018-03-22T12:45:39Z","doi":"10.15770/0000-001A"},{"updated":"2018-03-22T12:45:40Z","doi":"10.15770/0000-001M"},{"updated":"2018-03-22T14:31:30Z","doi":"10.18711/CSANFMN1"},{"updated":"2018-03-22T14:36:31Z","doi":"10.18711/QK3R7PQP"},{"updated":"2018-03-22T14:55:49Z","doi":"10.25499/J3M7BOSEJAS5VJGA4Q4P6MI9IG"},{"updated":"2018-03-22T14:55:56Z","doi":"10.25499/YOF9GCHQ3D2TECT7HZF625V99F"},{"updated":"2018-03-22T14:56:10Z","doi":"10.25499/OODK9CACIQV3V2XNZSFJ5KDOJD"},{"updated":"2018-03-22T14:56:12Z","doi":"10.25499/R42626B4YVZ2ETCQ64DV7KAASH"},{"updated":"2018-03-22T14:56:37Z","doi":"10.25499/CQW4OJ6KBT24V4KP2C53QEMCTH"},{"updated":"2018-03-22T14:56:58Z","doi":"10.25499/NDGB4WCHQKMJE9KYYY7BY9ID5C"},{"updated":"2018-03-22T16:00:22Z","doi":"10.5256/F1000RESEARCH.60647.R16516"},{"updated":"2018-03-22T16:51:03Z","doi":"10.4124/XWT8CPCVNR.1"},{"updated":"2018-03-23T11:25:23Z","doi":"10.5256/F1000RESEARCH.58332.R16525"},{"updated":"2018-03-23T11:45:23Z","doi":"10.5256/F1000RESEARCH.63108.R16526"},{"updated":"2018-03-23T15:03:09Z","doi":"10.4124/P4BF9YJTC9.1"},{"updated":"2018-03-23T15:04:22Z","doi":"10.4124/P4BF9YJTC9.2"},{"updated":"2018-03-23T15:43:50Z","doi":"10.4124/M383JVWW8P.1"},{"updated":"2018-03-23T16:43:07Z","doi":"10.18711/1KTYIXIF"},{"updated":"2018-03-23T16:45:48Z","doi":"10.18711/UHT655R7"},{"updated":"2018-03-23T20:43:55Z","doi":"10.24354/KW52J804P"},{"updated":"2018-03-23T21:14:45Z","doi":"10.24354/1N79H428D"},{"updated":"2018-03-26T10:05:23Z","doi":"10.5256/F1000RESEARCH.65620.R16542"},{"updated":"2018-03-26T10:10:23Z","doi":"10.5256/F1000RESEARCH.65621.R16543"},{"updated":"2018-03-26T10:20:23Z","doi":"10.5256/F1000RESEARCH.65621.R16544"},{"updated":"2018-03-26T10:30:23Z","doi":"10.5256/F1000RESEARCH.65622.R16545"},{"updated":"2018-03-26T10:35:23Z","doi":"10.5256/F1000RESEARCH.65622.R16546"},{"updated":"2018-03-26T10:50:23Z","doi":"10.5256/F1000RESEARCH.65644.R16547"},{"updated":"2018-03-26T10:55:23Z","doi":"10.5256/F1000RESEARCH.65649.R16549"},{"updated":"2018-03-26T11:00:23Z","doi":"10.5256/F1000RESEARCH.65651.R16550"},{"updated":"2018-03-26T14:20:23Z","doi":"10.21956/WELLCOMEOPENRES.65268.R16503"},{"updated":"2018-03-26T20:40:15Z","doi":"10.24354/73666448X"},{"updated":"2018-03-26T23:02:56Z","doi":"10.24354/NZ805Z68Q"},{"updated":"2018-03-27T07:44:41Z","doi":"10.18711/A7RN83BQ"},{"updated":"2018-03-27T08:05:37Z","doi":"10.18711/0K47HBEQ"},{"updated":"2018-03-27T09:40:23Z","doi":"10.5256/F1000RESEARCH.65677.R16572"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/N9CDH5HRG9.1"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/JTFC7DXRKP.1"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/DS72XJRXYG.2"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/GSX9DS3J5Y.1"},{"updated":"2018-03-29T14:36:09Z","doi":"10.4124/HSKBM6P6RY.1"},{"updated":"2018-03-29T15:13:16Z","doi":"10.7490/F1000RESEARCH.1130985.1"},{"updated":"2018-03-29T15:31:01Z","doi":"10.7490/F1000RESEARCH.1130987.1"},{"updated":"2018-03-30T13:50:31Z","doi":"10.0174/PHAIDRA.15"},{"updated":"2018-03-30T13:53:36Z","doi":"10.0174/PHAIDRA.16"},{"updated":"2018-04-03T07:25:32Z","doi":"10.0133/1522740326511"},{"updated":"2018-04-03T07:28:39Z","doi":"10.0133/37147"},{"updated":"2018-04-03T07:33:12Z","doi":"10.0133/37154"},{"updated":"2018-04-03T07:42:45Z","doi":"10.0133/1522741361930"},{"updated":"2018-04-03T07:47:09Z","doi":"10.0133/37161"},{"updated":"2018-04-03T07:50:48Z","doi":"10.0133/37168"},{"updated":"2018-04-03T10:55:48Z","doi":"10.18711/NF5ZUWUX"},{"updated":"2018-04-03T11:00:02Z","doi":"10.0133/1522753198258"},{"updated":"2018-04-03T11:09:17Z","doi":"10.0133/37182"},{"updated":"2018-04-03T11:26:27Z","doi":"10.14278/RODARETEST.4"},{"updated":"2018-04-03T11:26:27Z","doi":"10.14278/RODARETEST.3"},{"updated":"2018-04-03T12:06:01Z","doi":"10.7490/F1000RESEARCH.1131058.1"},{"updated":"2018-04-03T13:56:16Z","doi":"10.0180/OPARADEV-21"},{"updated":"2018-04-03T14:53:25Z","doi":"10.0133/37198"},{"updated":"2018-04-03T16:33:50Z","doi":"10.0123/DSPACE-6-SUBMISSIONPROCESS/4"},{"updated":"2018-04-04T06:04:36Z","doi":"10.0133/37200"},{"updated":"2018-04-04T06:19:34Z","doi":"10.0133/37202"},{"updated":"2018-04-04T06:26:07Z","doi":"10.0133/1522823164967"},{"updated":"2018-04-04T06:27:05Z","doi":"10.0133/37204"},{"updated":"2018-04-04T06:30:48Z","doi":"10.0133/37206"},{"updated":"2018-04-04T06:35:31Z","doi":"10.0133/37212"},{"updated":"2018-04-04T06:42:54Z","doi":"10.0133/1522824170260"},{"updated":"2018-04-04T06:44:46Z","doi":"10.0133/37224"},{"updated":"2018-04-04T07:12:33Z","doi":"10.0133/37232"},{"updated":"2018-04-04T07:12:36Z","doi":"10.0133/37233"},{"updated":"2018-04-04T07:14:33Z","doi":"10.0133/37235"},{"updated":"2018-04-04T08:52:33Z","doi":"10.0133/37239"},{"updated":"2018-04-04T08:52:39Z","doi":"10.0133/37238"},{"updated":"2018-04-04T09:20:10Z","doi":"10.0133/1522833606936"},{"updated":"2018-04-04T09:22:53Z","doi":"10.0133/37249"},{"updated":"2018-04-04T09:26:52Z","doi":"10.0133/37256"},{"updated":"2018-04-04T09:54:25Z","doi":"10.4124/31763EC9-22AC-4CEF-B533-86EEEE108E96"},{"updated":"2018-04-04T12:41:01Z","doi":"10.0133/1522845656642"},{"updated":"2018-04-04T12:42:39Z","doi":"10.0133/37267"},{"updated":"2018-04-04T12:46:13Z","doi":"10.0133/37274"},{"updated":"2018-04-04T13:28:34Z","doi":"10.0133/1522848510933"},{"updated":"2018-04-04T13:30:19Z","doi":"10.0133/37282"},{"updated":"2018-04-04T13:34:25Z","doi":"10.0133/37289"},{"updated":"2018-04-04T13:42:13Z","doi":"10.18711/PI6L21QH"},{"updated":"2018-04-04T13:57:59Z","doi":"10.0133/1522850275047"},{"updated":"2018-04-04T14:00:11Z","doi":"10.0133/37298"},{"updated":"2018-04-04T14:05:26Z","doi":"10.0133/37305"},{"updated":"2018-04-04T14:16:34Z","doi":"10.0133/37306"},{"updated":"2018-04-04T14:16:36Z","doi":"10.0133/37307"},{"updated":"2018-04-04T14:16:37Z","doi":"10.0133/37309"},{"updated":"2018-04-04T14:26:12Z","doi":"10.0133/1522851969004"},{"updated":"2018-04-04T14:27:46Z","doi":"10.0133/37318"},{"updated":"2018-04-04T14:31:11Z","doi":"10.0133/37325"},{"updated":"2018-04-04T14:48:33Z","doi":"10.0133/37327"},{"updated":"2018-04-04T14:48:35Z","doi":"10.0133/37326"},{"updated":"2018-04-04T14:50:32Z","doi":"10.0133/37329"},{"updated":"2018-04-04T15:21:41Z","doi":"10.4124/TEST38356"},{"updated":"2018-04-05T07:25:52Z","doi":"10.0133/1522913147296"},{"updated":"2018-04-05T07:27:54Z","doi":"10.0133/37338"},{"updated":"2018-04-05T07:33:35Z","doi":"10.0133/37345"},{"updated":"2018-04-05T07:56:33Z","doi":"10.0133/37347"},{"updated":"2018-04-05T07:56:35Z","doi":"10.0133/37349"},{"updated":"2018-04-05T07:56:37Z","doi":"10.0133/37346"},{"updated":"2018-04-05T08:11:05Z","doi":"10.0133/1522915861265"},{"updated":"2018-04-05T08:12:54Z","doi":"10.0133/37357"},{"updated":"2018-04-05T08:16:42Z","doi":"10.0133/37364"},{"updated":"2018-04-05T08:34:34Z","doi":"10.0133/37366"},{"updated":"2018-04-05T08:34:35Z","doi":"10.0133/37365"},{"updated":"2018-04-05T08:36:33Z","doi":"10.0133/37368"},{"updated":"2018-04-05T09:24:34Z","doi":"10.0133/37372"},{"updated":"2018-04-05T09:39:32Z","doi":"10.14278/RODARETEST.6"},{"updated":"2018-04-05T10:13:02Z","doi":"10.5256/F1000RESEARCH.55080.S186591"},{"updated":"2018-04-05T12:07:19Z","doi":"10.0123/DSPACE-6-SUBMISSIONPROCESS/6"},{"updated":"2018-04-05T12:09:38Z","doi":"10.0123/DSPACE-6-SUBMISSIONPROCESS/8"},{"updated":"2018-04-05T12:20:02Z","doi":"10.21956/WELLCOMEOPENRES.67749.R16669"},{"updated":"2018-04-05T12:27:39Z","doi":"10.14278/RODARETEST.7"},{"updated":"2018-04-05T12:27:40Z","doi":"10.14278/RODARETEST.5"},{"updated":"2018-04-05T12:45:02Z","doi":"10.21956/WELLCOMEOPENRES.67749.R16671"},{"updated":"2018-04-05T13:30:02Z","doi":"10.5256/F1000RESEARCH.50801.R15113"},{"updated":"2018-04-05T13:35:02Z","doi":"10.21956/WELLCOMEOPENRES.67750.R16670"},{"updated":"2018-04-05T15:11:02Z","doi":"10.5256/WELLCOMEOPENRES.63076.D202292"},{"updated":"2018-04-06T08:33:50Z","doi":"10.0133/1523003625184"},{"updated":"2018-04-06T08:36:09Z","doi":"10.0133/37380"},{"updated":"2018-04-06T08:40:16Z","doi":"10.0133/37387"},{"updated":"2018-04-06T08:45:02Z","doi":"10.21956/WELLCOMEOPENRES.67751.R16674"},{"updated":"2018-04-06T09:04:33Z","doi":"10.0133/37388"},{"updated":"2018-04-06T09:04:36Z","doi":"10.0133/37389"},{"updated":"2018-04-06T09:06:33Z","doi":"10.0133/37391"},{"updated":"2018-04-06T09:34:34Z","doi":"10.0133/37394"},{"updated":"2018-04-06T09:34:38Z","doi":"10.0133/37395"},{"updated":"2018-04-06T09:36:34Z","doi":"10.0133/37397"},{"updated":"2018-04-06T09:45:27Z","doi":"10.0133/1523007923642"},{"updated":"2018-04-06T09:48:16Z","doi":"10.0133/37406"},{"updated":"2018-04-06T10:00:58Z","doi":"10.0133/1523008854129"},{"updated":"2018-04-06T10:05:44Z","doi":"10.0133/37420"},{"updated":"2018-04-06T10:11:15Z","doi":"10.0133/37427"},{"updated":"2018-04-06T12:15:02Z","doi":"10.5256/F1000RESEARCH.60315.R16703"},{"updated":"2018-04-06T12:26:35Z","doi":"10.0133/37428"},{"updated":"2018-04-06T12:43:15Z","doi":"10.0133/1523018589961"},{"updated":"2018-04-06T12:45:37Z","doi":"10.0133/37435"},{"updated":"2018-04-06T12:50:39Z","doi":"10.0133/37442"},{"updated":"2018-04-06T13:12:33Z","doi":"10.0133/37443"},{"updated":"2018-04-06T13:14:33Z","doi":"10.0133/37444"},{"updated":"2018-04-06T13:14:34Z","doi":"10.0133/37446"},{"updated":"2018-04-06T13:48:47Z","doi":"10.0133/1523022520924"},{"updated":"2018-04-06T13:51:52Z","doi":"10.0133/37455"},{"updated":"2018-04-06T13:59:43Z","doi":"10.0133/37462"},{"updated":"2018-04-06T14:06:29Z","doi":"10.0133/1523023585173"},{"updated":"2018-04-06T14:10:09Z","doi":"10.0133/37469"},{"updated":"2018-04-06T14:17:34Z","doi":"10.0133/37476"},{"updated":"2018-04-06T14:32:25Z","doi":"10.0133/1523025138580"},{"updated":"2018-04-06T14:32:36Z","doi":"10.18711/QPN3RHCN"},{"updated":"2018-04-06T14:35:41Z","doi":"10.0133/37483"},{"updated":"2018-04-06T14:42:56Z","doi":"10.0133/37490"},{"updated":"2018-04-06T15:05:14Z","doi":"10.0133/1523027110901"},{"updated":"2018-04-06T15:08:06Z","doi":"10.0133/37497"},{"updated":"2018-04-06T15:15:01Z","doi":"10.0133/37504"},{"updated":"2018-04-06T16:30:09Z","doi":"10.0133/1523032201243"},{"updated":"2018-04-06T16:32:45Z","doi":"10.0133/37511"},{"updated":"2018-04-06T16:38:16Z","doi":"10.0133/37518"},{"updated":"2018-04-06T16:58:33Z","doi":"10.0133/37519"},{"updated":"2018-04-06T17:00:34Z","doi":"10.0133/37520"},{"updated":"2018-04-06T17:00:36Z","doi":"10.0133/37522"}]}}
|
80
|
+
string: '{"responseHeader":{"status":0,"QTime":1},"response":{"numFound":265,"start":0,"docs":[{"updated":"2018-03-15T09:57:00Z","doi":"10.0133/1521107796250"},{"updated":"2018-03-15T09:58:59Z","doi":"10.0133/36983"},{"updated":"2018-03-15T10:03:15Z","doi":"10.0133/36990"},{"updated":"2018-03-15T10:20:22Z","doi":"10.0133/36974"},{"updated":"2018-03-15T10:28:52Z","doi":"10.0133/36991"},{"updated":"2018-03-15T10:28:55Z","doi":"10.0133/36992"},{"updated":"2018-03-15T10:30:52Z","doi":"10.0133/36994"},{"updated":"2018-03-15T11:43:27Z","doi":"10.25499/V3CQF9MP9PGHVMKOK4BGVESQRG"},{"updated":"2018-03-15T11:55:18Z","doi":"10.4124/TBD6DFCNV7.1"},{"updated":"2018-03-15T12:01:51Z","doi":"10.25499/NN6XPZMCAWFYE4C4U24AVM7UYC"},{"updated":"2018-03-15T12:02:33Z","doi":"10.25499/B7TDRUIIUOBMEYTAI2D2OQISUF"},{"updated":"2018-03-15T12:02:35Z","doi":"10.25499/9PPX2HMEIRM5V9XNVWSK4DPZHE"},{"updated":"2018-03-15T14:04:26Z","doi":"10.25499/YY6HMZZCJQ4IVAPIJ2V6VB3VFG"},{"updated":"2018-03-15T14:04:45Z","doi":"10.25499/32WT74C59PV5E6K2T6V5DCRBAF"},{"updated":"2018-03-15T14:04:47Z","doi":"10.25499/XZWXOIDVE799VCX5MF3RO23SIG"},{"updated":"2018-03-15T14:54:02Z","doi":"10.25499/FINYT33PBFCBENX9CTFEDYGBYH"},{"updated":"2018-03-15T15:24:41Z","doi":"10.4124/TEST31174"},{"updated":"2018-03-15T17:51:54Z","doi":"10.4124/TEST90956"},{"updated":"2018-03-15T17:52:36Z","doi":"10.4124/TEST93333"},{"updated":"2018-03-15T17:53:16Z","doi":"10.4124/TEST41361"},{"updated":"2018-03-15T18:13:06Z","doi":"10.4124/TEST25895"},{"updated":"2018-03-15T18:15:31Z","doi":"10.4124/TEST10959"},{"updated":"2018-03-15T18:16:19Z","doi":"10.4124/TEST12971"},{"updated":"2018-03-15T18:17:38Z","doi":"10.4124/TEST68679"},{"updated":"2018-03-16T10:02:53Z","doi":"10.0133/1521194550071"},{"updated":"2018-03-16T10:04:32Z","doi":"10.0133/37003"},{"updated":"2018-03-16T10:08:19Z","doi":"10.0133/37010"},{"updated":"2018-03-16T10:30:53Z","doi":"10.0133/37012"},{"updated":"2018-03-16T10:30:56Z","doi":"10.0133/37011"},{"updated":"2018-03-16T10:32:52Z","doi":"10.0133/37014"},{"updated":"2018-03-16T13:24:53Z","doi":"10.0133/37017"},{"updated":"2018-03-16T13:26:52Z","doi":"10.0133/37018"},{"updated":"2018-03-16T15:58:49Z","doi":"10.4124/M5VRJ5JDH8.1"},{"updated":"2018-03-16T16:20:06Z","doi":"10.4124/ZBWBRNY7VW.1"},{"updated":"2018-03-16T16:55:39Z","doi":"10.4124/VBZNB7MDHD.1"},{"updated":"2018-03-16T19:11:13Z","doi":"10.24354/8C97KQ405"},{"updated":"2018-03-16T19:45:34Z","doi":"10.24354/T722H880Z"},{"updated":"2018-03-18T07:16:53Z","doi":"10.0133/1521357387134"},{"updated":"2018-03-18T07:21:38Z","doi":"10.0133/37025"},{"updated":"2018-03-18T07:29:23Z","doi":"10.0133/37032"},{"updated":"2018-03-18T07:35:40Z","doi":"10.0133/1521358516729"},{"updated":"2018-03-18T07:38:24Z","doi":"10.0133/37039"},{"updated":"2018-03-18T07:44:06Z","doi":"10.0133/37046"},{"updated":"2018-03-18T08:10:54Z","doi":"10.0133/37048"},{"updated":"2018-03-18T08:10:56Z","doi":"10.0133/37047"},{"updated":"2018-03-18T08:12:52Z","doi":"10.0133/37050"},{"updated":"2018-03-18T08:40:54Z","doi":"10.0133/37053"},{"updated":"2018-03-18T08:42:52Z","doi":"10.0133/37056"},{"updated":"2018-03-18T08:42:54Z","doi":"10.0133/37054"},{"updated":"2018-03-18T21:36:52Z","doi":"10.25499/RWGAYBZUGR23V4TFCB6NRXB5IC"},{"updated":"2018-03-19T08:46:20Z","doi":"10.0133/1521449157387"},{"updated":"2018-03-19T08:48:03Z","doi":"10.0133/37065"},{"updated":"2018-03-19T08:51:51Z","doi":"10.0133/37072"},{"updated":"2018-03-19T13:28:54Z","doi":"10.0133/37074"},{"updated":"2018-03-19T14:47:13Z","doi":"10.0133/1521470737379"},{"updated":"2018-03-19T14:48:54Z","doi":"10.0133/37083"},{"updated":"2018-03-19T14:52:16Z","doi":"10.0133/37090"},{"updated":"2018-03-20T10:17:01Z","doi":"10.18711/OQC0TZO1"},{"updated":"2018-03-20T10:36:29Z","doi":"10.18711/XO8BKEMO"},{"updated":"2018-03-20T10:55:22Z","doi":"10.5256/F1000RESEARCH.62588.R16484"},{"updated":"2018-03-20T11:05:22Z","doi":"10.5256/F1000RESEARCH.62588.R16485"},{"updated":"2018-03-20T11:05:22Z","doi":"10.5256/F1000RESEARCH.62588.R16486"},{"updated":"2018-03-20T11:05:22Z","doi":"10.5256/F1000RESEARCH.62588.R16487"},{"updated":"2018-03-20T11:15:22Z","doi":"10.5256/F1000RESEARCH.62714.R16492"},{"updated":"2018-03-20T11:45:22Z","doi":"10.5256/F1000RESEARCH.62714.R16489"},{"updated":"2018-03-20T12:20:22Z","doi":"10.21956/GATESOPENRES.537.R357"},{"updated":"2018-03-20T12:20:22Z","doi":"10.21956/GATESOPENRES.537.R358"},{"updated":"2018-03-20T12:50:33Z","doi":"10.18711/362RN2U1"},{"updated":"2018-03-20T13:00:40Z","doi":"10.18711/GZVK8KT6"},{"updated":"2018-03-20T14:36:49Z","doi":"10.18711/JSYB6GEY"},{"updated":"2018-03-20T15:18:01Z","doi":"10.18711/JJED9J3P"},{"updated":"2018-03-20T15:43:48Z","doi":"10.4124/930C0D94-F524-49FC-AAD8-3565B512D595"},{"updated":"2018-03-20T15:59:20Z","doi":"10.4124/A330D8B8-8903-4340-82F9-373883FBF6AE"},{"updated":"2018-03-20T16:19:44Z","doi":"10.18711/ALLAB15M"},{"updated":"2018-03-21T08:56:54Z","doi":"10.0133/37094"},{"updated":"2018-03-21T10:10:42Z","doi":"10.18711/OPB2KK4W"},{"updated":"2018-03-21T10:15:13Z","doi":"10.18711/0JDFNQ2C"},{"updated":"2018-03-21T10:39:50Z","doi":"10.0133/1521628766400"},{"updated":"2018-03-21T10:41:52Z","doi":"10.0133/37102"},{"updated":"2018-03-21T10:45:55Z","doi":"10.0133/37109"},{"updated":"2018-03-21T11:14:54Z","doi":"10.0133/37110"},{"updated":"2018-03-21T14:35:51Z","doi":"10.4124/TEST52413"},{"updated":"2018-03-21T14:41:40Z","doi":"10.0133/1521643275128"},{"updated":"2018-03-21T14:43:19Z","doi":"10.0133/37119"},{"updated":"2018-03-21T14:48:11Z","doi":"10.0133/37126"},{"updated":"2018-03-21T14:49:49Z","doi":"10.4124/TEST52414"},{"updated":"2018-03-21T14:51:05Z","doi":"10.0133/1521643765524"},{"updated":"2018-03-21T14:52:56Z","doi":"10.0133/37133"},{"updated":"2018-03-21T14:56:50Z","doi":"10.0133/37140"},{"updated":"2018-03-21T15:26:26Z","doi":"10.25620/ICIBER.ISSN.1476-4687"},{"updated":"2018-03-21T16:22:42Z","doi":"10.4124/55YP43BPKS.1"},{"updated":"2018-03-21T16:22:58Z","doi":"10.4124/55YP43BPKS.2"},{"updated":"2018-03-21T16:34:52Z","doi":"10.4124/XNFJTJJXGJ.1"},{"updated":"2018-03-21T16:46:35Z","doi":"10.4124/XNFJTJJXGJ.2"},{"updated":"2018-03-21T17:02:42Z","doi":"10.4124/XNFJTJJXGJ.3"},{"updated":"2018-03-21T19:58:36Z","doi":"10.18711/X56MF6P7"},{"updated":"2018-03-22T10:55:22Z","doi":"10.5256/F1000RESEARCH.63076.R16503"},{"updated":"2018-03-22T11:10:22Z","doi":"10.5256/F1000RESEARCH.63076.R16504"},{"updated":"2018-03-22T11:15:22Z","doi":"10.5256/F1000RESEARCH.63076.R16506"},{"updated":"2018-03-22T11:40:22Z","doi":"10.5256/F1000RESEARCH.63085.R16510"},{"updated":"2018-03-22T11:50:22Z","doi":"10.21956/GATESOPENRES.553.R456"},{"updated":"2018-03-22T11:55:22Z","doi":"10.21956/GATESOPENRES.553.R457"},{"updated":"2018-03-22T12:05:22Z","doi":"10.21956/GATESOPENRES.1120.R461"},{"updated":"2018-03-22T12:45:39Z","doi":"10.15770/0000-001A"},{"updated":"2018-03-22T12:45:40Z","doi":"10.15770/0000-001M"},{"updated":"2018-03-22T14:31:30Z","doi":"10.18711/CSANFMN1"},{"updated":"2018-03-22T14:36:31Z","doi":"10.18711/QK3R7PQP"},{"updated":"2018-03-22T14:55:49Z","doi":"10.25499/J3M7BOSEJAS5VJGA4Q4P6MI9IG"},{"updated":"2018-03-22T14:55:56Z","doi":"10.25499/YOF9GCHQ3D2TECT7HZF625V99F"},{"updated":"2018-03-22T14:56:10Z","doi":"10.25499/OODK9CACIQV3V2XNZSFJ5KDOJD"},{"updated":"2018-03-22T14:56:12Z","doi":"10.25499/R42626B4YVZ2ETCQ64DV7KAASH"},{"updated":"2018-03-22T14:56:37Z","doi":"10.25499/CQW4OJ6KBT24V4KP2C53QEMCTH"},{"updated":"2018-03-22T14:56:58Z","doi":"10.25499/NDGB4WCHQKMJE9KYYY7BY9ID5C"},{"updated":"2018-03-22T16:00:22Z","doi":"10.5256/F1000RESEARCH.60647.R16516"},{"updated":"2018-03-22T16:51:03Z","doi":"10.4124/XWT8CPCVNR.1"},{"updated":"2018-03-23T11:25:23Z","doi":"10.5256/F1000RESEARCH.58332.R16525"},{"updated":"2018-03-23T11:45:23Z","doi":"10.5256/F1000RESEARCH.63108.R16526"},{"updated":"2018-03-23T15:03:09Z","doi":"10.4124/P4BF9YJTC9.1"},{"updated":"2018-03-23T15:04:22Z","doi":"10.4124/P4BF9YJTC9.2"},{"updated":"2018-03-23T15:43:50Z","doi":"10.4124/M383JVWW8P.1"},{"updated":"2018-03-23T16:43:07Z","doi":"10.18711/1KTYIXIF"},{"updated":"2018-03-23T16:45:48Z","doi":"10.18711/UHT655R7"},{"updated":"2018-03-23T20:43:55Z","doi":"10.24354/KW52J804P"},{"updated":"2018-03-23T21:14:45Z","doi":"10.24354/1N79H428D"},{"updated":"2018-03-26T10:05:23Z","doi":"10.5256/F1000RESEARCH.65620.R16542"},{"updated":"2018-03-26T10:10:23Z","doi":"10.5256/F1000RESEARCH.65621.R16543"},{"updated":"2018-03-26T10:20:23Z","doi":"10.5256/F1000RESEARCH.65621.R16544"},{"updated":"2018-03-26T10:30:23Z","doi":"10.5256/F1000RESEARCH.65622.R16545"},{"updated":"2018-03-26T10:35:23Z","doi":"10.5256/F1000RESEARCH.65622.R16546"},{"updated":"2018-03-26T10:50:23Z","doi":"10.5256/F1000RESEARCH.65644.R16547"},{"updated":"2018-03-26T10:55:23Z","doi":"10.5256/F1000RESEARCH.65649.R16549"},{"updated":"2018-03-26T11:00:23Z","doi":"10.5256/F1000RESEARCH.65651.R16550"},{"updated":"2018-03-26T14:20:23Z","doi":"10.21956/WELLCOMEOPENRES.65268.R16503"},{"updated":"2018-03-26T20:40:15Z","doi":"10.24354/73666448X"},{"updated":"2018-03-26T23:02:56Z","doi":"10.24354/NZ805Z68Q"},{"updated":"2018-03-27T07:44:41Z","doi":"10.18711/A7RN83BQ"},{"updated":"2018-03-27T08:05:37Z","doi":"10.18711/0K47HBEQ"},{"updated":"2018-03-27T09:40:23Z","doi":"10.5256/F1000RESEARCH.65677.R16572"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/N9CDH5HRG9.1"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/JTFC7DXRKP.1"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/DS72XJRXYG.2"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/GSX9DS3J5Y.1"},{"updated":"2018-03-29T14:36:09Z","doi":"10.4124/HSKBM6P6RY.1"},{"updated":"2018-03-29T15:13:16Z","doi":"10.7490/F1000RESEARCH.1130985.1"},{"updated":"2018-03-29T15:31:01Z","doi":"10.7490/F1000RESEARCH.1130987.1"},{"updated":"2018-03-30T13:50:31Z","doi":"10.0174/PHAIDRA.15"},{"updated":"2018-03-30T13:53:36Z","doi":"10.0174/PHAIDRA.16"},{"updated":"2018-04-03T07:25:32Z","doi":"10.0133/1522740326511"},{"updated":"2018-04-03T07:28:39Z","doi":"10.0133/37147"},{"updated":"2018-04-03T07:33:12Z","doi":"10.0133/37154"},{"updated":"2018-04-03T07:42:45Z","doi":"10.0133/1522741361930"},{"updated":"2018-04-03T07:47:09Z","doi":"10.0133/37161"},{"updated":"2018-04-03T07:50:48Z","doi":"10.0133/37168"},{"updated":"2018-04-03T10:55:48Z","doi":"10.18711/NF5ZUWUX"},{"updated":"2018-04-03T11:00:02Z","doi":"10.0133/1522753198258"},{"updated":"2018-04-03T11:09:17Z","doi":"10.0133/37182"},{"updated":"2018-04-03T11:26:27Z","doi":"10.14278/RODARETEST.4"},{"updated":"2018-04-03T11:26:27Z","doi":"10.14278/RODARETEST.3"},{"updated":"2018-04-03T12:06:01Z","doi":"10.7490/F1000RESEARCH.1131058.1"},{"updated":"2018-04-03T13:56:16Z","doi":"10.0180/OPARADEV-21"},{"updated":"2018-04-03T14:53:25Z","doi":"10.0133/37198"},{"updated":"2018-04-03T16:33:50Z","doi":"10.0123/DSPACE-6-SUBMISSIONPROCESS/4"},{"updated":"2018-04-04T06:04:36Z","doi":"10.0133/37200"},{"updated":"2018-04-04T06:19:34Z","doi":"10.0133/37202"},{"updated":"2018-04-04T06:26:07Z","doi":"10.0133/1522823164967"},{"updated":"2018-04-04T06:27:05Z","doi":"10.0133/37204"},{"updated":"2018-04-04T06:30:48Z","doi":"10.0133/37206"},{"updated":"2018-04-04T06:35:31Z","doi":"10.0133/37212"},{"updated":"2018-04-04T06:42:54Z","doi":"10.0133/1522824170260"},{"updated":"2018-04-04T06:44:46Z","doi":"10.0133/37224"},{"updated":"2018-04-04T07:12:33Z","doi":"10.0133/37232"},{"updated":"2018-04-04T07:12:36Z","doi":"10.0133/37233"},{"updated":"2018-04-04T07:14:33Z","doi":"10.0133/37235"},{"updated":"2018-04-04T08:52:33Z","doi":"10.0133/37239"},{"updated":"2018-04-04T08:52:39Z","doi":"10.0133/37238"},{"updated":"2018-04-04T09:20:10Z","doi":"10.0133/1522833606936"},{"updated":"2018-04-04T09:22:53Z","doi":"10.0133/37249"},{"updated":"2018-04-04T09:26:52Z","doi":"10.0133/37256"},{"updated":"2018-04-04T09:54:25Z","doi":"10.4124/31763EC9-22AC-4CEF-B533-86EEEE108E96"},{"updated":"2018-04-04T12:41:01Z","doi":"10.0133/1522845656642"},{"updated":"2018-04-04T12:42:39Z","doi":"10.0133/37267"},{"updated":"2018-04-04T12:46:13Z","doi":"10.0133/37274"},{"updated":"2018-04-04T13:28:34Z","doi":"10.0133/1522848510933"},{"updated":"2018-04-04T13:30:19Z","doi":"10.0133/37282"},{"updated":"2018-04-04T13:34:25Z","doi":"10.0133/37289"},{"updated":"2018-04-04T13:42:13Z","doi":"10.18711/PI6L21QH"},{"updated":"2018-04-04T13:57:59Z","doi":"10.0133/1522850275047"},{"updated":"2018-04-04T14:00:11Z","doi":"10.0133/37298"},{"updated":"2018-04-04T14:05:26Z","doi":"10.0133/37305"},{"updated":"2018-04-04T14:16:34Z","doi":"10.0133/37306"},{"updated":"2018-04-04T14:16:36Z","doi":"10.0133/37307"},{"updated":"2018-04-04T14:16:37Z","doi":"10.0133/37309"},{"updated":"2018-04-04T14:26:12Z","doi":"10.0133/1522851969004"},{"updated":"2018-04-04T14:27:46Z","doi":"10.0133/37318"},{"updated":"2018-04-04T14:31:11Z","doi":"10.0133/37325"},{"updated":"2018-04-04T14:48:33Z","doi":"10.0133/37327"},{"updated":"2018-04-04T14:48:35Z","doi":"10.0133/37326"},{"updated":"2018-04-04T14:50:32Z","doi":"10.0133/37329"},{"updated":"2018-04-04T15:21:41Z","doi":"10.4124/TEST38356"},{"updated":"2018-04-05T07:25:52Z","doi":"10.0133/1522913147296"},{"updated":"2018-04-05T07:27:54Z","doi":"10.0133/37338"},{"updated":"2018-04-05T07:33:35Z","doi":"10.0133/37345"},{"updated":"2018-04-05T07:56:33Z","doi":"10.0133/37347"},{"updated":"2018-04-05T07:56:35Z","doi":"10.0133/37349"},{"updated":"2018-04-05T07:56:37Z","doi":"10.0133/37346"},{"updated":"2018-04-05T08:11:05Z","doi":"10.0133/1522915861265"},{"updated":"2018-04-05T08:12:54Z","doi":"10.0133/37357"},{"updated":"2018-04-05T08:16:42Z","doi":"10.0133/37364"},{"updated":"2018-04-05T08:34:34Z","doi":"10.0133/37366"},{"updated":"2018-04-05T08:34:35Z","doi":"10.0133/37365"},{"updated":"2018-04-05T08:36:33Z","doi":"10.0133/37368"},{"updated":"2018-04-05T09:24:34Z","doi":"10.0133/37372"},{"updated":"2018-04-05T09:39:32Z","doi":"10.14278/RODARETEST.6"},{"updated":"2018-04-05T10:13:02Z","doi":"10.5256/F1000RESEARCH.55080.S186591"},{"updated":"2018-04-05T12:07:19Z","doi":"10.0123/DSPACE-6-SUBMISSIONPROCESS/6"},{"updated":"2018-04-05T12:09:38Z","doi":"10.0123/DSPACE-6-SUBMISSIONPROCESS/8"},{"updated":"2018-04-05T12:20:02Z","doi":"10.21956/WELLCOMEOPENRES.67749.R16669"},{"updated":"2018-04-05T12:27:39Z","doi":"10.14278/RODARETEST.7"},{"updated":"2018-04-05T12:27:40Z","doi":"10.14278/RODARETEST.5"},{"updated":"2018-04-05T12:45:02Z","doi":"10.21956/WELLCOMEOPENRES.67749.R16671"},{"updated":"2018-04-05T13:30:02Z","doi":"10.5256/F1000RESEARCH.50801.R15113"},{"updated":"2018-04-05T13:35:02Z","doi":"10.21956/WELLCOMEOPENRES.67750.R16670"},{"updated":"2018-04-05T15:11:02Z","doi":"10.5256/WELLCOMEOPENRES.63076.D202292"},{"updated":"2018-04-06T08:33:50Z","doi":"10.0133/1523003625184"},{"updated":"2018-04-06T08:36:09Z","doi":"10.0133/37380"},{"updated":"2018-04-06T08:40:16Z","doi":"10.0133/37387"},{"updated":"2018-04-06T08:45:02Z","doi":"10.21956/WELLCOMEOPENRES.67751.R16674"},{"updated":"2018-04-06T09:04:33Z","doi":"10.0133/37388"},{"updated":"2018-04-06T09:04:36Z","doi":"10.0133/37389"},{"updated":"2018-04-06T09:06:33Z","doi":"10.0133/37391"},{"updated":"2018-04-06T09:34:34Z","doi":"10.0133/37394"},{"updated":"2018-04-06T09:34:38Z","doi":"10.0133/37395"},{"updated":"2018-04-06T09:36:34Z","doi":"10.0133/37397"},{"updated":"2018-04-06T09:45:27Z","doi":"10.0133/1523007923642"},{"updated":"2018-04-06T09:48:16Z","doi":"10.0133/37406"},{"updated":"2018-04-06T10:00:58Z","doi":"10.0133/1523008854129"},{"updated":"2018-04-06T10:05:44Z","doi":"10.0133/37420"},{"updated":"2018-04-06T10:11:15Z","doi":"10.0133/37427"},{"updated":"2018-04-06T12:15:02Z","doi":"10.5256/F1000RESEARCH.60315.R16703"},{"updated":"2018-04-06T12:26:35Z","doi":"10.0133/37428"},{"updated":"2018-04-06T12:43:15Z","doi":"10.0133/1523018589961"},{"updated":"2018-04-06T12:45:37Z","doi":"10.0133/37435"},{"updated":"2018-04-06T12:50:39Z","doi":"10.0133/37442"},{"updated":"2018-04-06T13:12:33Z","doi":"10.0133/37443"},{"updated":"2018-04-06T13:14:33Z","doi":"10.0133/37444"},{"updated":"2018-04-06T13:14:34Z","doi":"10.0133/37446"},{"updated":"2018-04-06T13:48:47Z","doi":"10.0133/1523022520924"},{"updated":"2018-04-06T13:51:52Z","doi":"10.0133/37455"},{"updated":"2018-04-06T13:59:43Z","doi":"10.0133/37462"},{"updated":"2018-04-06T14:06:29Z","doi":"10.0133/1523023585173"},{"updated":"2018-04-06T14:10:09Z","doi":"10.0133/37469"},{"updated":"2018-04-06T14:17:34Z","doi":"10.0133/37476"},{"updated":"2018-04-06T14:32:25Z","doi":"10.0133/1523025138580"},{"updated":"2018-04-06T14:32:36Z","doi":"10.18711/QPN3RHCN"},{"updated":"2018-04-06T14:35:41Z","doi":"10.0133/37483"},{"updated":"2018-04-06T14:42:56Z","doi":"10.0133/37490"},{"updated":"2018-04-06T15:05:14Z","doi":"10.0133/1523027110901"},{"updated":"2018-04-06T15:08:06Z","doi":"10.0133/37497"},{"updated":"2018-04-06T15:15:01Z","doi":"10.0133/37504"},{"updated":"2018-04-06T16:30:09Z","doi":"10.0133/1523032201243"},{"updated":"2018-04-06T16:32:45Z","doi":"10.0133/37511"},{"updated":"2018-04-06T16:38:16Z","doi":"10.0133/37518"},{"updated":"2018-04-06T16:58:33Z","doi":"10.0133/37519"},{"updated":"2018-04-06T17:00:34Z","doi":"10.0133/37520"},{"updated":"2018-04-06T17:00:36Z","doi":"10.0133/37522"}]}}
|
81
81
|
|
82
82
|
'
|
83
83
|
http_version:
|
84
|
-
recorded_at:
|
85
|
-
- request:
|
86
|
-
method: get
|
87
|
-
uri: https://s3.amazonaws.com/
|
88
|
-
body:
|
89
|
-
encoding: US-ASCII
|
90
|
-
string: ''
|
91
|
-
headers:
|
92
|
-
User-Agent:
|
93
|
-
- fog-core/1.45.0
|
94
|
-
X-Amz-Date:
|
95
|
-
- 20180908T225223Z
|
96
|
-
X-Amz-Content-Sha256:
|
97
|
-
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
98
|
-
Authorization:
|
99
|
-
- AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/20180908/us-east-1/s3/aws4_request,
|
100
|
-
SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=7f1b9c642e1ee5b71f9d8e3320a057f401fc7f71a172e0b2b84c02484fc18f08
|
101
|
-
response:
|
102
|
-
status:
|
103
|
-
code: 200
|
104
|
-
message: OK
|
105
|
-
headers:
|
106
|
-
X-Amz-Id-2:
|
107
|
-
- iJ+U6cARiidl9kUy1U2X//4FZ65pmB/+mkMdnm2c4ofIOLzU/DDy0a7FK7Ej1ryilBX+bfV48DY=
|
108
|
-
X-Amz-Request-Id:
|
109
|
-
- 0DD3BBA77F92E0A8
|
110
|
-
Date:
|
111
|
-
- Sat, 08 Sep 2018 22:52:24 GMT
|
112
|
-
Content-Type:
|
113
|
-
- application/xml
|
114
|
-
Server:
|
115
|
-
- AmazonS3
|
116
|
-
body:
|
117
|
-
encoding: ASCII-8BIT
|
118
|
-
string: |-
|
119
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
120
|
-
<ListAllMyBucketsResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Owner><ID>8170cc616e9d1833db4bade0c7af0010f04464343a1004b67a00fbcb41e361de</ID><DisplayName>infrastructure</DisplayName></Owner><Buckets><Bucket><Name>assets.datacite.org</Name><CreationDate>2018-01-03T09:09:55.000Z</CreationDate></Bucket><Bucket><Name>assets.test.datacite.org</Name><CreationDate>2018-01-06T05:16:26.000Z</CreationDate></Bucket><Bucket><Name>blog.datacite.org</Name><CreationDate>2018-01-03T09:10:38.000Z</CreationDate></Bucket><Bucket><Name>blog.stage.datacite.org</Name><CreationDate>2018-01-02T20:25:03.000Z</CreationDate></Bucket><Bucket><Name>book.openingscience.org</Name><CreationDate>2018-02-14T07:04:58.000Z</CreationDate></Bucket><Bucket><Name>doi.datacite.org</Name><CreationDate>2018-01-03T11:37:50.000Z</CreationDate></Bucket><Bucket><Name>doi.stage.datacite.org</Name><CreationDate>2018-01-02T22:58:15.000Z</CreationDate></Bucket><Bucket><Name>lagotto.io</Name><CreationDate>2016-01-10T10:12:40.000Z</CreationDate></Bucket><Bucket><Name>logs-us.datacite.org</Name><CreationDate>2018-05-16T04:19:36.000Z</CreationDate></Bucket><Bucket><Name>logs.datacite.org</Name><CreationDate>2017-12-18T08:18:02.000Z</CreationDate></Bucket><Bucket><Name>logs.stage.datacite.org</Name><CreationDate>2018-03-25T06:50:47.000Z</CreationDate></Bucket><Bucket><Name>ops.datacite.org</Name><CreationDate>2016-06-03T19:38:04.000Z</CreationDate></Bucket><Bucket><Name>papertrail.datacite.org</Name><CreationDate>2016-01-04T23:25:19.000Z</CreationDate></Bucket><Bucket><Name>pidapalooza.org</Name><CreationDate>2018-01-04T06:48:35.000Z</CreationDate></Bucket><Bucket><Name>repositoryfinder.datacite.org</Name><CreationDate>2018-05-11T20:48:24.000Z</CreationDate></Bucket><Bucket><Name>repositoryfinder.stage.datacite.org</Name><CreationDate>2018-05-11T17:58:52.000Z</CreationDate></Bucket><Bucket><Name>schema.datacite.org</Name><CreationDate>2018-01-03T11:50:01.000Z</CreationDate></Bucket><Bucket><Name>schema.stage.datacite.org</Name><CreationDate>2018-01-03T11:48:28.000Z</CreationDate></Bucket><Bucket><Name>search.test.datacite.org</Name><CreationDate>2018-09-08T09:50:14.000Z</CreationDate></Bucket><Bucket><Name>sitemaps-search-datacite</Name><CreationDate>2018-09-08T09:57:15.000Z</CreationDate></Bucket><Bucket><Name>sitemaps-search-datacite-test</Name><CreationDate>2018-09-08T10:25:14.000Z</CreationDate></Bucket><Bucket><Name>stats.datacite.org</Name><CreationDate>2018-01-03T11:53:10.000Z</CreationDate></Bucket><Bucket><Name>stats.stage.datacite.org</Name><CreationDate>2018-01-02T21:15:31.000Z</CreationDate></Bucket><Bucket><Name>test.datacite.org</Name><CreationDate>2018-01-03T11:41:00.000Z</CreationDate></Bucket><Bucket><Name>www.datacite.org</Name><CreationDate>2018-01-03T11:33:53.000Z</CreationDate></Bucket><Bucket><Name>www.stage.datacite.org</Name><CreationDate>2018-01-02T20:05:21.000Z</CreationDate></Bucket></Buckets></ListAllMyBucketsResult>
|
121
|
-
http_version:
|
122
|
-
recorded_at: Sat, 08 Sep 2018 22:52:23 GMT
|
84
|
+
recorded_at: Sun, 09 Sep 2018 05:56:18 GMT
|
123
85
|
- request:
|
124
86
|
method: put
|
125
|
-
uri: https://
|
87
|
+
uri: https://s3.eu-west-1.amazonaws.com/search.test.datacite.org/sitemaps/sitemap.xml.gz
|
126
88
|
body:
|
127
|
-
encoding:
|
128
|
-
string:
|
89
|
+
encoding: ASCII-8BIT
|
90
|
+
string: !binary |-
|
91
|
+
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
|
129
92
|
headers:
|
130
|
-
User-Agent:
|
131
|
-
- fog-core/1.45.0
|
132
93
|
Content-Type:
|
133
|
-
- application/gzip
|
94
|
+
- application/x-gzip
|
95
|
+
Accept-Encoding:
|
96
|
+
- ''
|
97
|
+
User-Agent:
|
98
|
+
- aws-sdk-ruby3/3.27.0 ruby/2.4.2 x86_64-darwin16 aws-sdk-s3/1.19.0
|
134
99
|
X-Amz-Acl:
|
135
100
|
- public-read
|
101
|
+
Cache-Control:
|
102
|
+
- private, max-age=0, no-cache
|
103
|
+
Expect:
|
104
|
+
- 100-continue
|
105
|
+
Content-Md5:
|
106
|
+
- 3eDcQTm5gSCT/PYrzG4sWQ==
|
136
107
|
X-Amz-Date:
|
137
|
-
-
|
108
|
+
- 20180909T055618Z
|
138
109
|
X-Amz-Content-Sha256:
|
139
|
-
-
|
140
|
-
X-Amz-Decoded-Content-Length:
|
141
|
-
- '4083'
|
110
|
+
- 1843a2ca76141d066b0c14a98ea9c2814da346c3abde699f7c9771e7facf5c12
|
142
111
|
Authorization:
|
143
|
-
- AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/
|
144
|
-
SignedHeaders=content-type;host;x-amz-acl;x-amz-content-sha256;x-amz-date
|
145
|
-
Signature=
|
112
|
+
- AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/20180909/eu-west-1/s3/aws4_request,
|
113
|
+
SignedHeaders=cache-control;content-md5;content-type;expect;host;user-agent;x-amz-acl;x-amz-content-sha256;x-amz-date,
|
114
|
+
Signature=ac9b1622d9aafee6826240c7a71036160a71e4741deb1fd19835ba2cdb642ebd
|
115
|
+
Content-Length:
|
116
|
+
- '4084'
|
117
|
+
Accept:
|
118
|
+
- "*/*"
|
146
119
|
response:
|
147
120
|
status:
|
148
121
|
code: 200
|
149
122
|
message: OK
|
150
123
|
headers:
|
151
124
|
X-Amz-Id-2:
|
152
|
-
-
|
125
|
+
- QRZtEkEn0R1LRMXvTfpMPXoXp+nHoGhz+gKDzW1Ad482+GJ1i4XoRdREOrD2DoxdKYKY5YlsE0E=
|
153
126
|
X-Amz-Request-Id:
|
154
|
-
-
|
127
|
+
- 8645A49F2CCEED01
|
155
128
|
Date:
|
156
|
-
-
|
129
|
+
- Sun, 09 Sep 2018 05:56:19 GMT
|
157
130
|
Etag:
|
158
|
-
- '"
|
131
|
+
- '"dde0dc4139b9812093fcf62bcc6e2c59"'
|
159
132
|
Content-Length:
|
160
133
|
- '0'
|
161
134
|
Server:
|
162
135
|
- AmazonS3
|
163
136
|
body:
|
164
|
-
encoding:
|
137
|
+
encoding: UTF-8
|
165
138
|
string: ''
|
166
139
|
http_version:
|
167
|
-
recorded_at:
|
140
|
+
recorded_at: Sun, 09 Sep 2018 05:56:18 GMT
|
168
141
|
recorded_with: VCR 3.0.3
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
message: OK
|
20
20
|
headers:
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Sun, 09 Sep 2018 05:56:18 GMT
|
23
23
|
Content-Type:
|
24
24
|
- application/json;charset=UTF-8
|
25
25
|
Connection:
|
@@ -36,9 +36,9 @@ http_interactions:
|
|
36
36
|
- DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization
|
37
37
|
body:
|
38
38
|
encoding: ASCII-8BIT
|
39
|
-
string: '{"responseHeader":{"status":0,"QTime":
|
39
|
+
string: '{"responseHeader":{"status":0,"QTime":0},"response":{"numFound":0,"start":0,"docs":[]}}
|
40
40
|
|
41
41
|
'
|
42
42
|
http_version:
|
43
|
-
recorded_at:
|
43
|
+
recorded_at: Sun, 09 Sep 2018 05:56:18 GMT
|
44
44
|
recorded_with: VCR 3.0.3
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
message: OK
|
20
20
|
headers:
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Sun, 09 Sep 2018 05:56:17 GMT
|
23
23
|
Content-Type:
|
24
24
|
- application/json;charset=UTF-8
|
25
25
|
Connection:
|
@@ -40,5 +40,5 @@ http_interactions:
|
|
40
40
|
|
41
41
|
'
|
42
42
|
http_version:
|
43
|
-
recorded_at: Sun,
|
43
|
+
recorded_at: Sun, 09 Sep 2018 05:56:17 GMT
|
44
44
|
recorded_with: VCR 3.0.3
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://solr.test.datacite.org/api?fl=doi,updated&fq=updated:%5B2018-
|
5
|
+
uri: https://solr.test.datacite.org/api?fl=doi,updated&fq=updated:%5B2018-09-08T00:00:00Z%20TO%202018-09-09T23:59:59Z%5D%20AND%20has_metadata:true%20AND%20is_active:true&q=*:*&rows=50000&sort=updated%20asc&start=0&wt=json
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
message: OK
|
20
20
|
headers:
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Sun, 09 Sep 2018 05:56:17 GMT
|
23
23
|
Content-Type:
|
24
24
|
- application/json;charset=UTF-8
|
25
25
|
Connection:
|
@@ -36,9 +36,9 @@ http_interactions:
|
|
36
36
|
- DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization
|
37
37
|
body:
|
38
38
|
encoding: ASCII-8BIT
|
39
|
-
string: '{"responseHeader":{"status":0,"QTime":0},"response":{"numFound":
|
39
|
+
string: '{"responseHeader":{"status":0,"QTime":0},"response":{"numFound":10,"start":0,"docs":[{"updated":"2018-09-08T05:28:56Z","doi":"10.15771/IMEJIDEV.RM"},{"updated":"2018-09-08T05:30:17Z","doi":"10.15771/IMEJIDEV.RN"},{"updated":"2018-09-08T05:32:36Z","doi":"10.15771/IMEJIDEV.RO"},{"updated":"2018-09-08T05:34:48Z","doi":"10.15771/IMEJIDEV.RP"},{"updated":"2018-09-08T05:36:38Z","doi":"10.15771/IMEJIDEV.RQ"},{"updated":"2018-09-09T05:28:52Z","doi":"10.15771/IMEJIDEV.RR"},{"updated":"2018-09-09T05:30:14Z","doi":"10.15771/IMEJIDEV.RS"},{"updated":"2018-09-09T05:32:28Z","doi":"10.15771/IMEJIDEV.RT"},{"updated":"2018-09-09T05:34:41Z","doi":"10.15771/IMEJIDEV.RU"},{"updated":"2018-09-09T05:36:38Z","doi":"10.15771/IMEJIDEV.RV"}]}}
|
40
40
|
|
41
41
|
'
|
42
42
|
http_version:
|
43
|
-
recorded_at: Sun,
|
43
|
+
recorded_at: Sun, 09 Sep 2018 05:56:17 GMT
|
44
44
|
recorded_with: VCR 3.0.3
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
message: OK
|
20
20
|
headers:
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Sun, 09 Sep 2018 05:56:15 GMT
|
23
23
|
Content-Type:
|
24
24
|
- application/json;charset=UTF-8
|
25
25
|
Connection:
|
@@ -36,9 +36,9 @@ http_interactions:
|
|
36
36
|
- DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization
|
37
37
|
body:
|
38
38
|
encoding: ASCII-8BIT
|
39
|
-
string: '{"responseHeader":{"status":0,"QTime":
|
39
|
+
string: '{"responseHeader":{"status":0,"QTime":41},"response":{"numFound":0,"start":0,"docs":[]}}
|
40
40
|
|
41
41
|
'
|
42
42
|
http_version:
|
43
|
-
recorded_at: Sun,
|
43
|
+
recorded_at: Sun, 09 Sep 2018 05:56:15 GMT
|
44
44
|
recorded_with: VCR 3.0.3
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://solr.test.datacite.org/api?fl=doi,updated&fq=updated:%5B2018-
|
5
|
+
uri: https://solr.test.datacite.org/api?fl=doi,updated&fq=updated:%5B2018-09-08T00:00:00Z%20TO%202018-09-09T23:59:59Z%5D%20AND%20has_metadata:true%20AND%20is_active:true&q=*:*&rows=0&sort=updated%20asc&start=0&wt=json
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
message: OK
|
20
20
|
headers:
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Sun, 09 Sep 2018 05:56:15 GMT
|
23
23
|
Content-Type:
|
24
24
|
- application/json;charset=UTF-8
|
25
25
|
Connection:
|
@@ -36,9 +36,9 @@ http_interactions:
|
|
36
36
|
- DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization
|
37
37
|
body:
|
38
38
|
encoding: ASCII-8BIT
|
39
|
-
string: '{"responseHeader":{"status":0,"QTime":
|
39
|
+
string: '{"responseHeader":{"status":0,"QTime":1},"response":{"numFound":10,"start":0,"docs":[]}}
|
40
40
|
|
41
41
|
'
|
42
42
|
http_version:
|
43
|
-
recorded_at: Sun,
|
43
|
+
recorded_at: Sun, 09 Sep 2018 05:56:15 GMT
|
44
44
|
recorded_with: VCR 3.0.3
|