toccatore 0.2.3 → 0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/Dockerfile +6 -3
  3. data/Gemfile.lock +11 -12
  4. data/README.md +1 -1
  5. data/lib/toccatore.rb +2 -0
  6. data/lib/toccatore/base.rb +26 -184
  7. data/lib/toccatore/cli.rb +13 -1
  8. data/lib/toccatore/datacite_related.rb +77 -0
  9. data/lib/toccatore/version.rb +1 -1
  10. data/spec/base_spec.rb +49 -0
  11. data/spec/cli_spec.rb +58 -11
  12. data/spec/datacite_related_spec.rb +129 -0
  13. data/spec/fixtures/datacite_related.json +14792 -0
  14. data/spec/fixtures/datacite_related_nil.json +12 -0
  15. data/spec/fixtures/orcid_update_is_previous.json +24 -1
  16. data/spec/fixtures/vcr_cassettes/Toccatore_Base/get_doi_ra/crossref.yml +72 -0
  17. data/spec/fixtures/vcr_cassettes/Toccatore_Base/get_doi_ra/datacite.yml +74 -0
  18. data/spec/fixtures/vcr_cassettes/Toccatore_CLI/datacite_related/should_fail.yml +1408 -0
  19. data/spec/fixtures/vcr_cassettes/Toccatore_CLI/datacite_related/should_query_by_DOI.yml +1145 -0
  20. data/spec/fixtures/vcr_cassettes/Toccatore_CLI/datacite_related/should_query_by_related_identifier.yml +252 -0
  21. data/spec/fixtures/vcr_cassettes/Toccatore_CLI/datacite_related/should_succeed.yml +6348 -0
  22. data/spec/fixtures/vcr_cassettes/Toccatore_CLI/datacite_related/should_succeed_with_no_works.yml +38 -0
  23. data/spec/fixtures/vcr_cassettes/Toccatore_CLI/orcid_update/should_delete.yml +47 -49
  24. data/spec/fixtures/vcr_cassettes/Toccatore_CLI/orcid_update/should_fail.yml +21 -132
  25. data/spec/fixtures/vcr_cassettes/Toccatore_CLI/orcid_update/should_query_by_DOI.yml +731 -1016
  26. data/spec/fixtures/vcr_cassettes/Toccatore_CLI/orcid_update/should_query_by_ORCID_ID.yml +1880 -1889
  27. data/spec/fixtures/vcr_cassettes/Toccatore_CLI/orcid_update/should_succeed.yml +1576 -1591
  28. data/spec/fixtures/vcr_cassettes/Toccatore_CLI/orcid_update/should_succeed_with_no_works.yml +11 -11
  29. data/spec/fixtures/vcr_cassettes/Toccatore_DataciteRelated/get_data/should_allow_queries_by_DOI_of_the_Datacite_Metadata_Search_API.yml +38 -0
  30. data/spec/fixtures/vcr_cassettes/Toccatore_DataciteRelated/get_data/should_allow_queries_by_related_identifier_of_the_Datacite_Metadata_Search_API.yml +38 -0
  31. data/spec/fixtures/vcr_cassettes/Toccatore_DataciteRelated/get_data/should_report_if_there_are_no_works_returned_by_the_Datacite_Metadata_Search_API.yml +38 -0
  32. data/spec/fixtures/vcr_cassettes/Toccatore_DataciteRelated/get_data/should_report_if_there_are_works_returned_by_the_Datacite_Metadata_Search_API.yml +40 -0
  33. data/spec/fixtures/vcr_cassettes/{Toccatore_OrcidUpdate/get_data/should_catch_errors_with_the_Datacite_Metadata_Search_API.yml → Toccatore_DataciteRelated/get_total/with_no_works.yml} +10 -10
  34. data/spec/fixtures/vcr_cassettes/Toccatore_DataciteRelated/get_total/with_works.yml +38 -0
  35. data/spec/fixtures/vcr_cassettes/Toccatore_DataciteRelated/parse_data/should_report_if_there_are_works_returned_by_the_Datacite_Metadata_Search_API.yml +1326 -0
  36. data/spec/fixtures/vcr_cassettes/Toccatore_DataciteRelated/push_data/should_report_if_there_are_works_returned_by_the_Datacite_Metadata_Search_API.yml +6274 -0
  37. data/spec/fixtures/vcr_cassettes/Toccatore_OrcidUpdate/get_data/should_allow_queries_by_DOI_of_the_Datacite_Metadata_Search_API.yml +13 -458
  38. data/spec/fixtures/vcr_cassettes/Toccatore_OrcidUpdate/get_data/should_allow_queries_by_ORCID_ID_of_the_Datacite_Metadata_Search_API.yml +10 -143
  39. data/spec/fixtures/vcr_cassettes/Toccatore_OrcidUpdate/get_data/should_report_if_there_are_no_works_returned_by_the_Datacite_Metadata_Search_API.yml +9 -9
  40. data/spec/fixtures/vcr_cassettes/Toccatore_OrcidUpdate/get_data/should_report_if_there_are_works_returned_by_the_Datacite_Metadata_Search_API.yml +10 -121
  41. data/spec/fixtures/vcr_cassettes/Toccatore_OrcidUpdate/get_total/with_no_works.yml +10 -10
  42. data/spec/fixtures/vcr_cassettes/Toccatore_OrcidUpdate/get_total/with_works.yml +10 -10
  43. data/spec/fixtures/vcr_cassettes/Toccatore_OrcidUpdate/push_data/should_delete_claims.yml +27 -25
  44. data/spec/fixtures/vcr_cassettes/Toccatore_OrcidUpdate/push_data/should_report_if_there_are_works_returned_by_the_Datacite_Metadata_Search_API.yml +1506 -1404
  45. data/spec/fixtures/vcr_cassettes/Toccatore_OrcidUpdate/queue_jobs/should_report_if_there_are_no_works_returned_by_the_Datacite_Metadata_Search_API.yml +9 -9
  46. data/spec/fixtures/vcr_cassettes/Toccatore_OrcidUpdate/queue_jobs/should_report_if_there_are_works_returned_by_the_Datacite_Metadata_Search_API.yml +21 -182
  47. data/spec/orcid_update_spec.rb +8 -14
  48. data/spec/spec_helper.rb +1 -0
  49. data/toccatore.gemspec +1 -1
  50. metadata +24 -5
@@ -20,43 +20,45 @@ http_interactions:
20
20
  code: 202
21
21
  message: ''
22
22
  headers:
23
- Server:
24
- - openresty/1.11.2.1
25
- Date:
26
- - Thu, 02 Feb 2017 14:31:21 GMT
23
+ Access-Control-Allow-Headers:
24
+ - Origin, Content-Type, Accept, Authorization, Token
25
+ Access-Control-Allow-Methods:
26
+ - GET, POST, OPTIONS
27
+ Access-Control-Allow-Origin:
28
+ - "*"
29
+ Access-Control-Max-Age:
30
+ - '1728000'
31
+ Cache-Control:
32
+ - no-cache
27
33
  Content-Type:
28
34
  - application/json; charset=utf-8
29
- Connection:
30
- - keep-alive
35
+ Date:
36
+ - Sat, 11 Mar 2017 10:44:49 GMT
37
+ Server:
38
+ - openresty/1.11.2.2
31
39
  Status:
32
40
  - 202 Accepted
33
- Cache-Control:
34
- - no-cache
35
- Access-Control-Allow-Origin:
36
- - "*"
37
41
  Vary:
38
42
  - Accept-Encoding
39
- Access-Control-Max-Age:
40
- - '1728000'
41
- X-Xss-Protection:
42
- - 1; mode=block
43
- X-Request-Id:
44
- - dcafcd99-0606-48cb-b666-0db27d69839d
45
- Access-Control-Allow-Headers:
46
- - Origin, Content-Type, Accept, Authorization, Token
47
- Access-Control-Allow-Methods:
48
- - GET, POST, OPTIONS
49
- X-Runtime:
50
- - '0.031286'
51
- X-Frame-Options:
52
- - SAMEORIGIN
53
43
  X-Content-Type-Options:
54
44
  - nosniff
45
+ X-Frame-Options:
46
+ - SAMEORIGIN
55
47
  X-Powered-By:
56
48
  - Phusion Passenger 5.1.2
49
+ X-Request-Id:
50
+ - 937ab67a-7004-4109-b9b6-9f42eb59267a
51
+ X-Runtime:
52
+ - '0.051823'
53
+ X-Xss-Protection:
54
+ - 1; mode=block
55
+ Content-Length:
56
+ - '238'
57
+ Connection:
58
+ - keep-alive
57
59
  body:
58
60
  encoding: UTF-8
59
- string: '{"data":{"id":"2705ee77-417f-4155-8633-94927a68ecf6","type":"claims","attributes":{"orcid":"0000-0001-8478-7549","doi":"10.6084/M9.FIGSHARE.1226424","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
61
+ string: '{"data":{"id":"2705ee77-417f-4155-8633-94927a68ecf6","type":"claims","attributes":{"orcid":"0000-0001-8478-7549","doi":"10.6084/M9.FIGSHARE.1226424","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
60
62
  http_version:
61
63
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
62
64
  - request:
@@ -79,43 +81,45 @@ http_interactions:
79
81
  code: 202
80
82
  message: ''
81
83
  headers:
82
- Server:
83
- - openresty/1.11.2.1
84
- Date:
85
- - Thu, 02 Feb 2017 14:31:21 GMT
84
+ Access-Control-Allow-Headers:
85
+ - Origin, Content-Type, Accept, Authorization, Token
86
+ Access-Control-Allow-Methods:
87
+ - GET, POST, OPTIONS
88
+ Access-Control-Allow-Origin:
89
+ - "*"
90
+ Access-Control-Max-Age:
91
+ - '1728000'
92
+ Cache-Control:
93
+ - no-cache
86
94
  Content-Type:
87
95
  - application/json; charset=utf-8
88
- Connection:
89
- - keep-alive
96
+ Date:
97
+ - Sat, 11 Mar 2017 10:44:49 GMT
98
+ Server:
99
+ - openresty/1.11.2.2
90
100
  Status:
91
101
  - 202 Accepted
92
- Cache-Control:
93
- - no-cache
94
- Access-Control-Allow-Origin:
95
- - "*"
96
102
  Vary:
97
103
  - Accept-Encoding
98
- Access-Control-Max-Age:
99
- - '1728000'
100
- X-Xss-Protection:
101
- - 1; mode=block
102
- X-Request-Id:
103
- - be68a40e-00d1-4b6c-91e4-87ce351b7537
104
- Access-Control-Allow-Headers:
105
- - Origin, Content-Type, Accept, Authorization, Token
106
- Access-Control-Allow-Methods:
107
- - GET, POST, OPTIONS
108
- X-Runtime:
109
- - '0.030948'
110
- X-Frame-Options:
111
- - SAMEORIGIN
112
104
  X-Content-Type-Options:
113
105
  - nosniff
106
+ X-Frame-Options:
107
+ - SAMEORIGIN
114
108
  X-Powered-By:
115
109
  - Phusion Passenger 5.1.2
110
+ X-Request-Id:
111
+ - 69bb4f49-2dc1-49be-a4be-3243c682a2e1
112
+ X-Runtime:
113
+ - '0.011121'
114
+ X-Xss-Protection:
115
+ - 1; mode=block
116
+ Content-Length:
117
+ - '238'
118
+ Connection:
119
+ - keep-alive
116
120
  body:
117
121
  encoding: UTF-8
118
- string: '{"data":{"id":"75f9f7d1-43a8-4ce9-9a67-196c5ef4bd91","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1371006","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
122
+ string: '{"data":{"id":"75f9f7d1-43a8-4ce9-9a67-196c5ef4bd91","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1371006","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
119
123
  http_version:
120
124
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
121
125
  - request:
@@ -138,43 +142,45 @@ http_interactions:
138
142
  code: 202
139
143
  message: ''
140
144
  headers:
141
- Server:
142
- - openresty/1.11.2.1
143
- Date:
144
- - Thu, 02 Feb 2017 14:31:21 GMT
145
+ Access-Control-Allow-Headers:
146
+ - Origin, Content-Type, Accept, Authorization, Token
147
+ Access-Control-Allow-Methods:
148
+ - GET, POST, OPTIONS
149
+ Access-Control-Allow-Origin:
150
+ - "*"
151
+ Access-Control-Max-Age:
152
+ - '1728000'
153
+ Cache-Control:
154
+ - no-cache
145
155
  Content-Type:
146
156
  - application/json; charset=utf-8
147
- Connection:
148
- - keep-alive
157
+ Date:
158
+ - Sat, 11 Mar 2017 10:44:49 GMT
159
+ Server:
160
+ - openresty/1.11.2.2
149
161
  Status:
150
162
  - 202 Accepted
151
- Cache-Control:
152
- - no-cache
153
- Access-Control-Allow-Origin:
154
- - "*"
155
163
  Vary:
156
164
  - Accept-Encoding
157
- Access-Control-Max-Age:
158
- - '1728000'
159
- X-Xss-Protection:
160
- - 1; mode=block
161
- X-Request-Id:
162
- - c901a718-4aeb-4d99-bbc4-18c6cef54422
163
- Access-Control-Allow-Headers:
164
- - Origin, Content-Type, Accept, Authorization, Token
165
- Access-Control-Allow-Methods:
166
- - GET, POST, OPTIONS
167
- X-Runtime:
168
- - '0.031040'
169
- X-Frame-Options:
170
- - SAMEORIGIN
171
165
  X-Content-Type-Options:
172
166
  - nosniff
167
+ X-Frame-Options:
168
+ - SAMEORIGIN
173
169
  X-Powered-By:
174
170
  - Phusion Passenger 5.1.2
171
+ X-Request-Id:
172
+ - 4eeb8615-c38d-4562-91ca-14b08bdcabae
173
+ X-Runtime:
174
+ - '0.009841'
175
+ X-Xss-Protection:
176
+ - 1; mode=block
177
+ Content-Length:
178
+ - '238'
179
+ Connection:
180
+ - keep-alive
175
181
  body:
176
182
  encoding: UTF-8
177
- string: '{"data":{"id":"0fe9bf2c-8d15-41ff-90be-58830a12a4c1","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1371005","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
183
+ string: '{"data":{"id":"0fe9bf2c-8d15-41ff-90be-58830a12a4c1","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1371005","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
178
184
  http_version:
179
185
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
180
186
  - request:
@@ -197,43 +203,45 @@ http_interactions:
197
203
  code: 202
198
204
  message: ''
199
205
  headers:
200
- Server:
201
- - openresty/1.11.2.1
202
- Date:
203
- - Thu, 02 Feb 2017 14:31:21 GMT
206
+ Access-Control-Allow-Headers:
207
+ - Origin, Content-Type, Accept, Authorization, Token
208
+ Access-Control-Allow-Methods:
209
+ - GET, POST, OPTIONS
210
+ Access-Control-Allow-Origin:
211
+ - "*"
212
+ Access-Control-Max-Age:
213
+ - '1728000'
214
+ Cache-Control:
215
+ - no-cache
204
216
  Content-Type:
205
217
  - application/json; charset=utf-8
206
- Connection:
207
- - keep-alive
218
+ Date:
219
+ - Sat, 11 Mar 2017 10:44:49 GMT
220
+ Server:
221
+ - openresty/1.11.2.2
208
222
  Status:
209
223
  - 202 Accepted
210
- Cache-Control:
211
- - no-cache
212
- Access-Control-Allow-Origin:
213
- - "*"
214
224
  Vary:
215
225
  - Accept-Encoding
216
- Access-Control-Max-Age:
217
- - '1728000'
218
- X-Xss-Protection:
219
- - 1; mode=block
220
- X-Request-Id:
221
- - faa8e590-4fdd-4271-b183-2fed67288b34
222
- Access-Control-Allow-Headers:
223
- - Origin, Content-Type, Accept, Authorization, Token
224
- Access-Control-Allow-Methods:
225
- - GET, POST, OPTIONS
226
- X-Runtime:
227
- - '0.031658'
228
- X-Frame-Options:
229
- - SAMEORIGIN
230
226
  X-Content-Type-Options:
231
227
  - nosniff
228
+ X-Frame-Options:
229
+ - SAMEORIGIN
232
230
  X-Powered-By:
233
231
  - Phusion Passenger 5.1.2
232
+ X-Request-Id:
233
+ - 3e5adfa2-5a84-4824-aa49-8b42efbe9566
234
+ X-Runtime:
235
+ - '0.011139'
236
+ X-Xss-Protection:
237
+ - 1; mode=block
238
+ Content-Length:
239
+ - '238'
240
+ Connection:
241
+ - keep-alive
234
242
  body:
235
243
  encoding: UTF-8
236
- string: '{"data":{"id":"f3d646bd-61a2-4dc6-b796-e9d8b7797796","type":"claims","attributes":{"orcid":"0000-0002-4000-4167","doi":"10.6084/M9.FIGSHARE.1368269","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
244
+ string: '{"data":{"id":"f3d646bd-61a2-4dc6-b796-e9d8b7797796","type":"claims","attributes":{"orcid":"0000-0002-4000-4167","doi":"10.6084/M9.FIGSHARE.1368269","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
237
245
  http_version:
238
246
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
239
247
  - request:
@@ -256,43 +264,45 @@ http_interactions:
256
264
  code: 202
257
265
  message: ''
258
266
  headers:
259
- Server:
260
- - openresty/1.11.2.1
261
- Date:
262
- - Thu, 02 Feb 2017 14:31:22 GMT
267
+ Access-Control-Allow-Headers:
268
+ - Origin, Content-Type, Accept, Authorization, Token
269
+ Access-Control-Allow-Methods:
270
+ - GET, POST, OPTIONS
271
+ Access-Control-Allow-Origin:
272
+ - "*"
273
+ Access-Control-Max-Age:
274
+ - '1728000'
275
+ Cache-Control:
276
+ - no-cache
263
277
  Content-Type:
264
278
  - application/json; charset=utf-8
265
- Connection:
266
- - keep-alive
279
+ Date:
280
+ - Sat, 11 Mar 2017 10:44:50 GMT
281
+ Server:
282
+ - openresty/1.11.2.2
267
283
  Status:
268
284
  - 202 Accepted
269
- Cache-Control:
270
- - no-cache
271
- Access-Control-Allow-Origin:
272
- - "*"
273
285
  Vary:
274
286
  - Accept-Encoding
275
- Access-Control-Max-Age:
276
- - '1728000'
277
- X-Xss-Protection:
278
- - 1; mode=block
279
- X-Request-Id:
280
- - 0a28baa7-fc18-4227-9498-37245a8e37c5
281
- Access-Control-Allow-Headers:
282
- - Origin, Content-Type, Accept, Authorization, Token
283
- Access-Control-Allow-Methods:
284
- - GET, POST, OPTIONS
285
- X-Runtime:
286
- - '0.031780'
287
- X-Frame-Options:
288
- - SAMEORIGIN
289
287
  X-Content-Type-Options:
290
288
  - nosniff
289
+ X-Frame-Options:
290
+ - SAMEORIGIN
291
291
  X-Powered-By:
292
292
  - Phusion Passenger 5.1.2
293
+ X-Request-Id:
294
+ - 08eec333-46e6-4696-9f60-c7d5fc9c4606
295
+ X-Runtime:
296
+ - '0.012186'
297
+ X-Xss-Protection:
298
+ - 1; mode=block
299
+ Content-Length:
300
+ - '238'
301
+ Connection:
302
+ - keep-alive
293
303
  body:
294
304
  encoding: UTF-8
295
- string: '{"data":{"id":"3a7107a9-01cc-493b-8177-2c0b3229267c","type":"claims","attributes":{"orcid":"0000-0001-6176-2816","doi":"10.6084/M9.FIGSHARE.1368484","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
305
+ string: '{"data":{"id":"3a7107a9-01cc-493b-8177-2c0b3229267c","type":"claims","attributes":{"orcid":"0000-0001-6176-2816","doi":"10.6084/M9.FIGSHARE.1368484","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
296
306
  http_version:
297
307
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
298
308
  - request:
@@ -315,43 +325,45 @@ http_interactions:
315
325
  code: 202
316
326
  message: ''
317
327
  headers:
318
- Server:
319
- - openresty/1.11.2.1
320
- Date:
321
- - Thu, 02 Feb 2017 14:31:22 GMT
328
+ Access-Control-Allow-Headers:
329
+ - Origin, Content-Type, Accept, Authorization, Token
330
+ Access-Control-Allow-Methods:
331
+ - GET, POST, OPTIONS
332
+ Access-Control-Allow-Origin:
333
+ - "*"
334
+ Access-Control-Max-Age:
335
+ - '1728000'
336
+ Cache-Control:
337
+ - no-cache
322
338
  Content-Type:
323
339
  - application/json; charset=utf-8
324
- Connection:
325
- - keep-alive
340
+ Date:
341
+ - Sat, 11 Mar 2017 10:44:50 GMT
342
+ Server:
343
+ - openresty/1.11.2.2
326
344
  Status:
327
345
  - 202 Accepted
328
- Cache-Control:
329
- - no-cache
330
- Access-Control-Allow-Origin:
331
- - "*"
332
346
  Vary:
333
347
  - Accept-Encoding
334
- Access-Control-Max-Age:
335
- - '1728000'
336
- X-Xss-Protection:
337
- - 1; mode=block
338
- X-Request-Id:
339
- - fd53de49-576b-4438-8cf3-37b352f00d77
340
- Access-Control-Allow-Headers:
341
- - Origin, Content-Type, Accept, Authorization, Token
342
- Access-Control-Allow-Methods:
343
- - GET, POST, OPTIONS
344
- X-Runtime:
345
- - '0.031448'
346
- X-Frame-Options:
347
- - SAMEORIGIN
348
348
  X-Content-Type-Options:
349
349
  - nosniff
350
+ X-Frame-Options:
351
+ - SAMEORIGIN
350
352
  X-Powered-By:
351
353
  - Phusion Passenger 5.1.2
354
+ X-Request-Id:
355
+ - 1b3e29b8-d5ea-42ba-927d-d09964090f5c
356
+ X-Runtime:
357
+ - '0.016427'
358
+ X-Xss-Protection:
359
+ - 1; mode=block
360
+ Content-Length:
361
+ - '238'
362
+ Connection:
363
+ - keep-alive
352
364
  body:
353
365
  encoding: UTF-8
354
- string: '{"data":{"id":"09fb4fcf-c634-4f8e-9c5b-73f5f5aa602c","type":"claims","attributes":{"orcid":"0000-0003-3796-827X","doi":"10.6084/M9.FIGSHARE.1368488","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
366
+ string: '{"data":{"id":"09fb4fcf-c634-4f8e-9c5b-73f5f5aa602c","type":"claims","attributes":{"orcid":"0000-0003-3796-827X","doi":"10.6084/M9.FIGSHARE.1368488","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
355
367
  http_version:
356
368
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
357
369
  - request:
@@ -374,43 +386,45 @@ http_interactions:
374
386
  code: 202
375
387
  message: ''
376
388
  headers:
377
- Server:
378
- - openresty/1.11.2.1
379
- Date:
380
- - Thu, 02 Feb 2017 14:31:22 GMT
381
- Content-Type:
382
- - application/json; charset=utf-8
383
- Connection:
384
- - keep-alive
385
- Status:
386
- - 202 Accepted
387
- Cache-Control:
388
- - no-cache
389
+ Access-Control-Allow-Headers:
390
+ - Origin, Content-Type, Accept, Authorization, Token
391
+ Access-Control-Allow-Methods:
392
+ - GET, POST, OPTIONS
389
393
  Access-Control-Allow-Origin:
390
394
  - "*"
391
- Vary:
392
- - Accept-Encoding
393
395
  Access-Control-Max-Age:
394
396
  - '1728000'
395
- X-Xss-Protection:
396
- - 1; mode=block
397
- X-Request-Id:
398
- - de40f755-9c7e-48f2-add5-ab7eeb53ed98
399
- Access-Control-Allow-Headers:
400
- - Origin, Content-Type, Accept, Authorization, Token
401
- Access-Control-Allow-Methods:
402
- - GET, POST, OPTIONS
403
- X-Runtime:
404
- - '0.031010'
405
- X-Frame-Options:
406
- - SAMEORIGIN
397
+ Cache-Control:
398
+ - no-cache
399
+ Content-Type:
400
+ - application/json; charset=utf-8
401
+ Date:
402
+ - Sat, 11 Mar 2017 10:44:50 GMT
403
+ Server:
404
+ - openresty/1.11.2.2
405
+ Status:
406
+ - 202 Accepted
407
+ Vary:
408
+ - Accept-Encoding
407
409
  X-Content-Type-Options:
408
410
  - nosniff
411
+ X-Frame-Options:
412
+ - SAMEORIGIN
409
413
  X-Powered-By:
410
414
  - Phusion Passenger 5.1.2
415
+ X-Request-Id:
416
+ - bcf6bb7e-baa3-405c-9f2f-953b8aa96951
417
+ X-Runtime:
418
+ - '0.011075'
419
+ X-Xss-Protection:
420
+ - 1; mode=block
421
+ Content-Length:
422
+ - '238'
423
+ Connection:
424
+ - keep-alive
411
425
  body:
412
426
  encoding: UTF-8
413
- string: '{"data":{"id":"2ba182e7-37ad-4f32-bf0c-eff20cbcc5ea","type":"claims","attributes":{"orcid":"0000-0003-1073-887X","doi":"10.6084/M9.FIGSHARE.1368581","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
427
+ string: '{"data":{"id":"2ba182e7-37ad-4f32-bf0c-eff20cbcc5ea","type":"claims","attributes":{"orcid":"0000-0003-1073-887X","doi":"10.6084/M9.FIGSHARE.1368581","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
414
428
  http_version:
415
429
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
416
430
  - request:
@@ -433,43 +447,45 @@ http_interactions:
433
447
  code: 202
434
448
  message: ''
435
449
  headers:
436
- Server:
437
- - openresty/1.11.2.1
438
- Date:
439
- - Thu, 02 Feb 2017 14:31:22 GMT
450
+ Access-Control-Allow-Headers:
451
+ - Origin, Content-Type, Accept, Authorization, Token
452
+ Access-Control-Allow-Methods:
453
+ - GET, POST, OPTIONS
454
+ Access-Control-Allow-Origin:
455
+ - "*"
456
+ Access-Control-Max-Age:
457
+ - '1728000'
458
+ Cache-Control:
459
+ - no-cache
440
460
  Content-Type:
441
461
  - application/json; charset=utf-8
442
- Connection:
443
- - keep-alive
462
+ Date:
463
+ - Sat, 11 Mar 2017 10:44:50 GMT
464
+ Server:
465
+ - openresty/1.11.2.2
444
466
  Status:
445
467
  - 202 Accepted
446
- Cache-Control:
447
- - no-cache
448
- Access-Control-Allow-Origin:
449
- - "*"
450
468
  Vary:
451
469
  - Accept-Encoding
452
- Access-Control-Max-Age:
453
- - '1728000'
454
- X-Xss-Protection:
455
- - 1; mode=block
456
- X-Request-Id:
457
- - 9a1a9401-9509-43c8-8fda-51c05d57ca8d
458
- Access-Control-Allow-Headers:
459
- - Origin, Content-Type, Accept, Authorization, Token
460
- Access-Control-Allow-Methods:
461
- - GET, POST, OPTIONS
462
- X-Runtime:
463
- - '0.031116'
464
- X-Frame-Options:
465
- - SAMEORIGIN
466
470
  X-Content-Type-Options:
467
471
  - nosniff
472
+ X-Frame-Options:
473
+ - SAMEORIGIN
468
474
  X-Powered-By:
469
475
  - Phusion Passenger 5.1.2
476
+ X-Request-Id:
477
+ - d6afa976-9006-4149-af27-5ee2f5c9ed07
478
+ X-Runtime:
479
+ - '0.011559'
480
+ X-Xss-Protection:
481
+ - 1; mode=block
482
+ Content-Length:
483
+ - '238'
484
+ Connection:
485
+ - keep-alive
470
486
  body:
471
487
  encoding: UTF-8
472
- string: '{"data":{"id":"d2b7fb4a-84e8-4ce8-96e2-c82f7060e086","type":"claims","attributes":{"orcid":"0000-0001-9873-8342","doi":"10.6084/M9.FIGSHARE.1368663","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
488
+ string: '{"data":{"id":"d2b7fb4a-84e8-4ce8-96e2-c82f7060e086","type":"claims","attributes":{"orcid":"0000-0001-9873-8342","doi":"10.6084/M9.FIGSHARE.1368663","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
473
489
  http_version:
474
490
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
475
491
  - request:
@@ -492,43 +508,45 @@ http_interactions:
492
508
  code: 202
493
509
  message: ''
494
510
  headers:
495
- Server:
496
- - openresty/1.11.2.1
497
- Date:
498
- - Thu, 02 Feb 2017 14:31:23 GMT
511
+ Access-Control-Allow-Headers:
512
+ - Origin, Content-Type, Accept, Authorization, Token
513
+ Access-Control-Allow-Methods:
514
+ - GET, POST, OPTIONS
515
+ Access-Control-Allow-Origin:
516
+ - "*"
517
+ Access-Control-Max-Age:
518
+ - '1728000'
519
+ Cache-Control:
520
+ - no-cache
499
521
  Content-Type:
500
522
  - application/json; charset=utf-8
501
- Connection:
502
- - keep-alive
523
+ Date:
524
+ - Sat, 11 Mar 2017 10:44:50 GMT
525
+ Server:
526
+ - openresty/1.11.2.2
503
527
  Status:
504
528
  - 202 Accepted
505
- Cache-Control:
506
- - no-cache
507
- Access-Control-Allow-Origin:
508
- - "*"
509
529
  Vary:
510
530
  - Accept-Encoding
511
- Access-Control-Max-Age:
512
- - '1728000'
513
- X-Xss-Protection:
514
- - 1; mode=block
515
- X-Request-Id:
516
- - ccfd8c6f-a01f-46d7-a97d-7207903fdd34
517
- Access-Control-Allow-Headers:
518
- - Origin, Content-Type, Accept, Authorization, Token
519
- Access-Control-Allow-Methods:
520
- - GET, POST, OPTIONS
521
- X-Runtime:
522
- - '0.031158'
523
- X-Frame-Options:
524
- - SAMEORIGIN
525
531
  X-Content-Type-Options:
526
532
  - nosniff
533
+ X-Frame-Options:
534
+ - SAMEORIGIN
527
535
  X-Powered-By:
528
536
  - Phusion Passenger 5.1.2
537
+ X-Request-Id:
538
+ - 365ed90a-1d6f-4673-aa0c-f5b4a0bd5a36
539
+ X-Runtime:
540
+ - '0.021123'
541
+ X-Xss-Protection:
542
+ - 1; mode=block
543
+ Content-Length:
544
+ - '238'
545
+ Connection:
546
+ - keep-alive
529
547
  body:
530
548
  encoding: UTF-8
531
- string: '{"data":{"id":"e0b38bc7-4f0e-4bc8-8711-7520808ff0ce","type":"claims","attributes":{"orcid":"0000-0002-3437-4911","doi":"10.6084/M9.FIGSHARE.1368671","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
549
+ string: '{"data":{"id":"e0b38bc7-4f0e-4bc8-8711-7520808ff0ce","type":"claims","attributes":{"orcid":"0000-0002-3437-4911","doi":"10.6084/M9.FIGSHARE.1368671","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
532
550
  http_version:
533
551
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
534
552
  - request:
@@ -551,43 +569,43 @@ http_interactions:
551
569
  code: 202
552
570
  message: ''
553
571
  headers:
554
- Server:
555
- - openresty/1.11.2.1
556
- Date:
557
- - Thu, 02 Feb 2017 14:31:23 GMT
572
+ Access-Control-Allow-Headers:
573
+ - Origin, Content-Type, Accept, Authorization, Token
574
+ Access-Control-Allow-Methods:
575
+ - GET, POST, OPTIONS
576
+ Access-Control-Allow-Origin:
577
+ - "*"
578
+ Access-Control-Max-Age:
579
+ - '1728000'
580
+ Cache-Control:
581
+ - no-cache
558
582
  Content-Type:
559
583
  - application/json; charset=utf-8
560
- Connection:
561
- - keep-alive
584
+ Date:
585
+ - Sat, 11 Mar 2017 10:44:51 GMT
586
+ Server:
587
+ - openresty/1.11.2.2
562
588
  Status:
563
589
  - 202 Accepted
564
- Cache-Control:
565
- - no-cache
566
- Access-Control-Allow-Origin:
567
- - "*"
568
590
  Vary:
569
591
  - Accept-Encoding
570
- Access-Control-Max-Age:
571
- - '1728000'
572
- X-Xss-Protection:
573
- - 1; mode=block
574
- X-Request-Id:
575
- - 463d1570-1ba0-45f4-8ae0-a56ba623f790
576
- Access-Control-Allow-Headers:
577
- - Origin, Content-Type, Accept, Authorization, Token
578
- Access-Control-Allow-Methods:
579
- - GET, POST, OPTIONS
580
- X-Runtime:
581
- - '0.031088'
582
- X-Frame-Options:
583
- - SAMEORIGIN
584
592
  X-Content-Type-Options:
585
593
  - nosniff
594
+ X-Frame-Options:
595
+ - SAMEORIGIN
586
596
  X-Powered-By:
587
597
  - Phusion Passenger 5.1.2
598
+ X-Request-Id:
599
+ - 366f73e8-3f7d-4aa6-bfc4-0659675f0ed6
600
+ X-Runtime:
601
+ - '0.013928'
602
+ X-Xss-Protection:
603
+ - 1; mode=block
604
+ Connection:
605
+ - keep-alive
588
606
  body:
589
607
  encoding: UTF-8
590
- string: '{"data":{"id":"22f58c64-3b8d-4689-a7fe-a13ba9047573","type":"claims","attributes":{"orcid":"0000-0001-9873-8342","doi":"10.6084/M9.FIGSHARE.1368728","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
608
+ string: '{"data":{"id":"22f58c64-3b8d-4689-a7fe-a13ba9047573","type":"claims","attributes":{"orcid":"0000-0001-9873-8342","doi":"10.6084/M9.FIGSHARE.1368728","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
591
609
  http_version:
592
610
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
593
611
  - request:
@@ -610,43 +628,45 @@ http_interactions:
610
628
  code: 202
611
629
  message: ''
612
630
  headers:
613
- Server:
614
- - openresty/1.11.2.1
615
- Date:
616
- - Thu, 02 Feb 2017 14:31:23 GMT
631
+ Access-Control-Allow-Headers:
632
+ - Origin, Content-Type, Accept, Authorization, Token
633
+ Access-Control-Allow-Methods:
634
+ - GET, POST, OPTIONS
635
+ Access-Control-Allow-Origin:
636
+ - "*"
637
+ Access-Control-Max-Age:
638
+ - '1728000'
639
+ Cache-Control:
640
+ - no-cache
617
641
  Content-Type:
618
642
  - application/json; charset=utf-8
619
- Connection:
620
- - keep-alive
643
+ Date:
644
+ - Sat, 11 Mar 2017 10:44:51 GMT
645
+ Server:
646
+ - openresty/1.11.2.2
621
647
  Status:
622
648
  - 202 Accepted
623
- Cache-Control:
624
- - no-cache
625
- Access-Control-Allow-Origin:
626
- - "*"
627
649
  Vary:
628
650
  - Accept-Encoding
629
- Access-Control-Max-Age:
630
- - '1728000'
631
- X-Xss-Protection:
632
- - 1; mode=block
633
- X-Request-Id:
634
- - 3a8608fb-c634-4f37-a726-7172dde442a1
635
- Access-Control-Allow-Headers:
636
- - Origin, Content-Type, Accept, Authorization, Token
637
- Access-Control-Allow-Methods:
638
- - GET, POST, OPTIONS
639
- X-Runtime:
640
- - '0.031133'
641
- X-Frame-Options:
642
- - SAMEORIGIN
643
651
  X-Content-Type-Options:
644
652
  - nosniff
653
+ X-Frame-Options:
654
+ - SAMEORIGIN
645
655
  X-Powered-By:
646
656
  - Phusion Passenger 5.1.2
657
+ X-Request-Id:
658
+ - fb2b3d21-34b1-419d-99ff-058bacbdaef7
659
+ X-Runtime:
660
+ - '0.011927'
661
+ X-Xss-Protection:
662
+ - 1; mode=block
663
+ Content-Length:
664
+ - '238'
665
+ Connection:
666
+ - keep-alive
647
667
  body:
648
668
  encoding: UTF-8
649
- string: '{"data":{"id":"056cb105-8f96-4ea7-b341-46833042e278","type":"claims","attributes":{"orcid":"0000-0001-7757-8001","doi":"10.6084/M9.FIGSHARE.1368744","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
669
+ string: '{"data":{"id":"056cb105-8f96-4ea7-b341-46833042e278","type":"claims","attributes":{"orcid":"0000-0001-7757-8001","doi":"10.6084/M9.FIGSHARE.1368744","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
650
670
  http_version:
651
671
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
652
672
  - request:
@@ -669,43 +689,45 @@ http_interactions:
669
689
  code: 202
670
690
  message: ''
671
691
  headers:
672
- Server:
673
- - openresty/1.11.2.1
674
- Date:
675
- - Thu, 02 Feb 2017 14:31:23 GMT
692
+ Access-Control-Allow-Headers:
693
+ - Origin, Content-Type, Accept, Authorization, Token
694
+ Access-Control-Allow-Methods:
695
+ - GET, POST, OPTIONS
696
+ Access-Control-Allow-Origin:
697
+ - "*"
698
+ Access-Control-Max-Age:
699
+ - '1728000'
700
+ Cache-Control:
701
+ - no-cache
676
702
  Content-Type:
677
703
  - application/json; charset=utf-8
678
- Connection:
679
- - keep-alive
704
+ Date:
705
+ - Sat, 11 Mar 2017 10:44:51 GMT
706
+ Server:
707
+ - openresty/1.11.2.2
680
708
  Status:
681
709
  - 202 Accepted
682
- Cache-Control:
683
- - no-cache
684
- Access-Control-Allow-Origin:
685
- - "*"
686
710
  Vary:
687
711
  - Accept-Encoding
688
- Access-Control-Max-Age:
689
- - '1728000'
690
- X-Xss-Protection:
691
- - 1; mode=block
692
- X-Request-Id:
693
- - 219e915c-ec31-4923-9142-1485c07cd66f
694
- Access-Control-Allow-Headers:
695
- - Origin, Content-Type, Accept, Authorization, Token
696
- Access-Control-Allow-Methods:
697
- - GET, POST, OPTIONS
698
- X-Runtime:
699
- - '0.030944'
700
- X-Frame-Options:
701
- - SAMEORIGIN
702
712
  X-Content-Type-Options:
703
713
  - nosniff
714
+ X-Frame-Options:
715
+ - SAMEORIGIN
704
716
  X-Powered-By:
705
717
  - Phusion Passenger 5.1.2
718
+ X-Request-Id:
719
+ - a98c7db5-6fe0-482d-b3a1-302b2883ff7d
720
+ X-Runtime:
721
+ - '0.011854'
722
+ X-Xss-Protection:
723
+ - 1; mode=block
724
+ Content-Length:
725
+ - '238'
726
+ Connection:
727
+ - keep-alive
706
728
  body:
707
729
  encoding: UTF-8
708
- string: '{"data":{"id":"6480232b-6457-4b0b-a171-1d1b8f7a595e","type":"claims","attributes":{"orcid":"0000-0001-7757-8001","doi":"10.6084/M9.FIGSHARE.1368745","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
730
+ string: '{"data":{"id":"6480232b-6457-4b0b-a171-1d1b8f7a595e","type":"claims","attributes":{"orcid":"0000-0001-7757-8001","doi":"10.6084/M9.FIGSHARE.1368745","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
709
731
  http_version:
710
732
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
711
733
  - request:
@@ -728,43 +750,45 @@ http_interactions:
728
750
  code: 202
729
751
  message: ''
730
752
  headers:
731
- Server:
732
- - openresty/1.11.2.1
733
- Date:
734
- - Thu, 02 Feb 2017 14:31:24 GMT
753
+ Access-Control-Allow-Headers:
754
+ - Origin, Content-Type, Accept, Authorization, Token
755
+ Access-Control-Allow-Methods:
756
+ - GET, POST, OPTIONS
757
+ Access-Control-Allow-Origin:
758
+ - "*"
759
+ Access-Control-Max-Age:
760
+ - '1728000'
761
+ Cache-Control:
762
+ - no-cache
735
763
  Content-Type:
736
764
  - application/json; charset=utf-8
737
- Connection:
738
- - keep-alive
765
+ Date:
766
+ - Sat, 11 Mar 2017 10:44:51 GMT
767
+ Server:
768
+ - openresty/1.11.2.2
739
769
  Status:
740
770
  - 202 Accepted
741
- Cache-Control:
742
- - no-cache
743
- Access-Control-Allow-Origin:
744
- - "*"
745
771
  Vary:
746
772
  - Accept-Encoding
747
- Access-Control-Max-Age:
748
- - '1728000'
749
- X-Xss-Protection:
750
- - 1; mode=block
751
- X-Request-Id:
752
- - 9d46ea45-4acb-49ff-b5a7-d06816cd20ea
753
- Access-Control-Allow-Headers:
754
- - Origin, Content-Type, Accept, Authorization, Token
755
- Access-Control-Allow-Methods:
756
- - GET, POST, OPTIONS
757
- X-Runtime:
758
- - '0.031032'
759
- X-Frame-Options:
760
- - SAMEORIGIN
761
773
  X-Content-Type-Options:
762
774
  - nosniff
775
+ X-Frame-Options:
776
+ - SAMEORIGIN
763
777
  X-Powered-By:
764
778
  - Phusion Passenger 5.1.2
779
+ X-Request-Id:
780
+ - a18d55d2-2b2e-4a64-8403-b9ec6c4a7af4
781
+ X-Runtime:
782
+ - '0.010399'
783
+ X-Xss-Protection:
784
+ - 1; mode=block
785
+ Content-Length:
786
+ - '238'
787
+ Connection:
788
+ - keep-alive
765
789
  body:
766
790
  encoding: UTF-8
767
- string: '{"data":{"id":"51a6b8d5-aae4-4c7a-8ae7-39ffbecb10f9","type":"claims","attributes":{"orcid":"0000-0001-7757-8001","doi":"10.6084/M9.FIGSHARE.1368746","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
791
+ string: '{"data":{"id":"51a6b8d5-aae4-4c7a-8ae7-39ffbecb10f9","type":"claims","attributes":{"orcid":"0000-0001-7757-8001","doi":"10.6084/M9.FIGSHARE.1368746","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
768
792
  http_version:
769
793
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
770
794
  - request:
@@ -787,43 +811,45 @@ http_interactions:
787
811
  code: 202
788
812
  message: ''
789
813
  headers:
790
- Server:
791
- - openresty/1.11.2.1
792
- Date:
793
- - Thu, 02 Feb 2017 14:31:24 GMT
814
+ Access-Control-Allow-Headers:
815
+ - Origin, Content-Type, Accept, Authorization, Token
816
+ Access-Control-Allow-Methods:
817
+ - GET, POST, OPTIONS
818
+ Access-Control-Allow-Origin:
819
+ - "*"
820
+ Access-Control-Max-Age:
821
+ - '1728000'
822
+ Cache-Control:
823
+ - no-cache
794
824
  Content-Type:
795
825
  - application/json; charset=utf-8
796
- Connection:
797
- - keep-alive
826
+ Date:
827
+ - Sat, 11 Mar 2017 10:44:52 GMT
828
+ Server:
829
+ - openresty/1.11.2.2
798
830
  Status:
799
831
  - 202 Accepted
800
- Cache-Control:
801
- - no-cache
802
- Access-Control-Allow-Origin:
803
- - "*"
804
832
  Vary:
805
833
  - Accept-Encoding
806
- Access-Control-Max-Age:
807
- - '1728000'
808
- X-Xss-Protection:
809
- - 1; mode=block
810
- X-Request-Id:
811
- - 8b1b84b8-0299-4000-b06c-682973e54b83
812
- Access-Control-Allow-Headers:
813
- - Origin, Content-Type, Accept, Authorization, Token
814
- Access-Control-Allow-Methods:
815
- - GET, POST, OPTIONS
816
- X-Runtime:
817
- - '0.030935'
818
- X-Frame-Options:
819
- - SAMEORIGIN
820
834
  X-Content-Type-Options:
821
835
  - nosniff
836
+ X-Frame-Options:
837
+ - SAMEORIGIN
822
838
  X-Powered-By:
823
839
  - Phusion Passenger 5.1.2
840
+ X-Request-Id:
841
+ - 6123c8e2-5266-44a9-962f-d1f29b9dd7dd
842
+ X-Runtime:
843
+ - '0.011832'
844
+ X-Xss-Protection:
845
+ - 1; mode=block
846
+ Content-Length:
847
+ - '238'
848
+ Connection:
849
+ - keep-alive
824
850
  body:
825
851
  encoding: UTF-8
826
- string: '{"data":{"id":"0fef7a27-d2ec-4ee0-a51f-6f531ca8f718","type":"claims","attributes":{"orcid":"0000-0001-6176-2816","doi":"10.6084/M9.FIGSHARE.1368761","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
852
+ string: '{"data":{"id":"0fef7a27-d2ec-4ee0-a51f-6f531ca8f718","type":"claims","attributes":{"orcid":"0000-0001-6176-2816","doi":"10.6084/M9.FIGSHARE.1368761","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
827
853
  http_version:
828
854
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
829
855
  - request:
@@ -846,43 +872,43 @@ http_interactions:
846
872
  code: 202
847
873
  message: ''
848
874
  headers:
849
- Server:
850
- - openresty/1.11.2.1
851
- Date:
852
- - Thu, 02 Feb 2017 14:31:24 GMT
875
+ Access-Control-Allow-Headers:
876
+ - Origin, Content-Type, Accept, Authorization, Token
877
+ Access-Control-Allow-Methods:
878
+ - GET, POST, OPTIONS
879
+ Access-Control-Allow-Origin:
880
+ - "*"
881
+ Access-Control-Max-Age:
882
+ - '1728000'
883
+ Cache-Control:
884
+ - no-cache
853
885
  Content-Type:
854
886
  - application/json; charset=utf-8
855
- Connection:
856
- - keep-alive
887
+ Date:
888
+ - Sat, 11 Mar 2017 10:44:52 GMT
889
+ Server:
890
+ - openresty/1.11.2.2
857
891
  Status:
858
892
  - 202 Accepted
859
- Cache-Control:
860
- - no-cache
861
- Access-Control-Allow-Origin:
862
- - "*"
863
893
  Vary:
864
894
  - Accept-Encoding
865
- Access-Control-Max-Age:
866
- - '1728000'
867
- X-Xss-Protection:
868
- - 1; mode=block
869
- X-Request-Id:
870
- - aabf0e4f-72df-4452-9f2b-33569fcce3ed
871
- Access-Control-Allow-Headers:
872
- - Origin, Content-Type, Accept, Authorization, Token
873
- Access-Control-Allow-Methods:
874
- - GET, POST, OPTIONS
875
- X-Runtime:
876
- - '0.031036'
877
- X-Frame-Options:
878
- - SAMEORIGIN
879
895
  X-Content-Type-Options:
880
896
  - nosniff
897
+ X-Frame-Options:
898
+ - SAMEORIGIN
881
899
  X-Powered-By:
882
900
  - Phusion Passenger 5.1.2
901
+ X-Request-Id:
902
+ - 51dc4b0b-24e3-4b4f-aee6-ee781b7a573f
903
+ X-Runtime:
904
+ - '0.011052'
905
+ X-Xss-Protection:
906
+ - 1; mode=block
907
+ Connection:
908
+ - keep-alive
883
909
  body:
884
910
  encoding: UTF-8
885
- string: '{"data":{"id":"0ea81b4e-83cc-4e65-b77d-48b34fa92324","type":"claims","attributes":{"orcid":"0000-0002-0311-9774","doi":"10.6084/M9.FIGSHARE.1368774","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
911
+ string: '{"data":{"id":"0ea81b4e-83cc-4e65-b77d-48b34fa92324","type":"claims","attributes":{"orcid":"0000-0002-0311-9774","doi":"10.6084/M9.FIGSHARE.1368774","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
886
912
  http_version:
887
913
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
888
914
  - request:
@@ -905,43 +931,43 @@ http_interactions:
905
931
  code: 202
906
932
  message: ''
907
933
  headers:
908
- Server:
909
- - openresty/1.11.2.1
910
- Date:
911
- - Thu, 02 Feb 2017 14:31:24 GMT
934
+ Access-Control-Allow-Headers:
935
+ - Origin, Content-Type, Accept, Authorization, Token
936
+ Access-Control-Allow-Methods:
937
+ - GET, POST, OPTIONS
938
+ Access-Control-Allow-Origin:
939
+ - "*"
940
+ Access-Control-Max-Age:
941
+ - '1728000'
942
+ Cache-Control:
943
+ - no-cache
912
944
  Content-Type:
913
945
  - application/json; charset=utf-8
914
- Connection:
915
- - keep-alive
946
+ Date:
947
+ - Sat, 11 Mar 2017 10:44:52 GMT
948
+ Server:
949
+ - openresty/1.11.2.2
916
950
  Status:
917
951
  - 202 Accepted
918
- Cache-Control:
919
- - no-cache
920
- Access-Control-Allow-Origin:
921
- - "*"
922
952
  Vary:
923
953
  - Accept-Encoding
924
- Access-Control-Max-Age:
925
- - '1728000'
926
- X-Xss-Protection:
927
- - 1; mode=block
928
- X-Request-Id:
929
- - 1aeae970-ab22-436d-a294-f94857479ea0
930
- Access-Control-Allow-Headers:
931
- - Origin, Content-Type, Accept, Authorization, Token
932
- Access-Control-Allow-Methods:
933
- - GET, POST, OPTIONS
934
- X-Runtime:
935
- - '0.031215'
936
- X-Frame-Options:
937
- - SAMEORIGIN
938
954
  X-Content-Type-Options:
939
955
  - nosniff
956
+ X-Frame-Options:
957
+ - SAMEORIGIN
940
958
  X-Powered-By:
941
959
  - Phusion Passenger 5.1.2
960
+ X-Request-Id:
961
+ - 9ab3a7df-c32a-4c7e-9f9d-d04a6cfb1b49
962
+ X-Runtime:
963
+ - '0.010164'
964
+ X-Xss-Protection:
965
+ - 1; mode=block
966
+ Connection:
967
+ - keep-alive
942
968
  body:
943
969
  encoding: UTF-8
944
- string: '{"data":{"id":"016304aa-9faf-4fba-9199-1abeb8238884","type":"claims","attributes":{"orcid":"0000-0001-6921-5307","doi":"10.6084/M9.FIGSHARE.1370882","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
970
+ string: '{"data":{"id":"016304aa-9faf-4fba-9199-1abeb8238884","type":"claims","attributes":{"orcid":"0000-0001-6921-5307","doi":"10.6084/M9.FIGSHARE.1370882","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
945
971
  http_version:
946
972
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
947
973
  - request:
@@ -964,40 +990,42 @@ http_interactions:
964
990
  code: 202
965
991
  message: ''
966
992
  headers:
967
- Server:
968
- - openresty/1.11.2.1
969
- Date:
970
- - Thu, 02 Feb 2017 14:31:25 GMT
993
+ Access-Control-Allow-Headers:
994
+ - Origin, Content-Type, Accept, Authorization, Token
995
+ Access-Control-Allow-Methods:
996
+ - GET, POST, OPTIONS
997
+ Access-Control-Allow-Origin:
998
+ - "*"
999
+ Access-Control-Max-Age:
1000
+ - '1728000'
1001
+ Cache-Control:
1002
+ - no-cache
971
1003
  Content-Type:
972
1004
  - application/json; charset=utf-8
973
- Connection:
974
- - keep-alive
1005
+ Date:
1006
+ - Sat, 11 Mar 2017 10:44:52 GMT
1007
+ Server:
1008
+ - openresty/1.11.2.2
975
1009
  Status:
976
1010
  - 202 Accepted
977
- Cache-Control:
978
- - no-cache
979
- Access-Control-Allow-Origin:
980
- - "*"
981
1011
  Vary:
982
1012
  - Accept-Encoding
983
- Access-Control-Max-Age:
984
- - '1728000'
985
- X-Xss-Protection:
986
- - 1; mode=block
987
- X-Request-Id:
988
- - a106683f-535a-4f6c-8153-441835ba2f74
989
- Access-Control-Allow-Headers:
990
- - Origin, Content-Type, Accept, Authorization, Token
991
- Access-Control-Allow-Methods:
992
- - GET, POST, OPTIONS
993
- X-Runtime:
994
- - '0.033801'
995
- X-Frame-Options:
996
- - SAMEORIGIN
997
1013
  X-Content-Type-Options:
998
1014
  - nosniff
1015
+ X-Frame-Options:
1016
+ - SAMEORIGIN
999
1017
  X-Powered-By:
1000
1018
  - Phusion Passenger 5.1.2
1019
+ X-Request-Id:
1020
+ - cf6671a4-58f3-4331-845e-d8fb2181ae92
1021
+ X-Runtime:
1022
+ - '0.005042'
1023
+ X-Xss-Protection:
1024
+ - 1; mode=block
1025
+ Content-Length:
1026
+ - '241'
1027
+ Connection:
1028
+ - keep-alive
1001
1029
  body:
1002
1030
  encoding: UTF-8
1003
1031
  string: '{"data":{"id":"73ec7b27-4205-476e-b563-221eab2731d3","type":"claims","attributes":{"orcid":"0000-0003-3938-899X","doi":"10.5284/1030449","source-id":"orcid_update","state":"done","claim-action":"create","claimed-at":"2016-02-28T16:50:23Z"}}}'
@@ -1023,40 +1051,42 @@ http_interactions:
1023
1051
  code: 202
1024
1052
  message: ''
1025
1053
  headers:
1026
- Server:
1027
- - openresty/1.11.2.1
1028
- Date:
1029
- - Thu, 02 Feb 2017 14:31:25 GMT
1030
- Content-Type:
1031
- - application/json; charset=utf-8
1032
- Connection:
1033
- - keep-alive
1034
- Status:
1035
- - 202 Accepted
1036
- Cache-Control:
1037
- - no-cache
1038
- Access-Control-Allow-Origin:
1039
- - "*"
1040
- Vary:
1041
- - Accept-Encoding
1042
- Access-Control-Max-Age:
1043
- - '1728000'
1044
- X-Xss-Protection:
1045
- - 1; mode=block
1046
- X-Request-Id:
1047
- - a7a1922f-bc95-4c47-8992-a954d3e7e751
1048
1054
  Access-Control-Allow-Headers:
1049
1055
  - Origin, Content-Type, Accept, Authorization, Token
1050
1056
  Access-Control-Allow-Methods:
1051
1057
  - GET, POST, OPTIONS
1052
- X-Runtime:
1053
- - '0.031293'
1054
- X-Frame-Options:
1055
- - SAMEORIGIN
1058
+ Access-Control-Allow-Origin:
1059
+ - "*"
1060
+ Access-Control-Max-Age:
1061
+ - '1728000'
1062
+ Cache-Control:
1063
+ - no-cache
1064
+ Content-Type:
1065
+ - application/json; charset=utf-8
1066
+ Date:
1067
+ - Sat, 11 Mar 2017 10:44:53 GMT
1068
+ Server:
1069
+ - openresty/1.11.2.2
1070
+ Status:
1071
+ - 202 Accepted
1072
+ Vary:
1073
+ - Accept-Encoding
1056
1074
  X-Content-Type-Options:
1057
1075
  - nosniff
1076
+ X-Frame-Options:
1077
+ - SAMEORIGIN
1058
1078
  X-Powered-By:
1059
1079
  - Phusion Passenger 5.1.2
1080
+ X-Request-Id:
1081
+ - 21c2dce0-ed9d-443e-8a06-ed92a658fb98
1082
+ X-Runtime:
1083
+ - '0.004881'
1084
+ X-Xss-Protection:
1085
+ - 1; mode=block
1086
+ Content-Length:
1087
+ - '241'
1088
+ Connection:
1089
+ - keep-alive
1060
1090
  body:
1061
1091
  encoding: UTF-8
1062
1092
  string: '{"data":{"id":"0459f74f-d44a-47b4-94a1-df5be9de1438","type":"claims","attributes":{"orcid":"0000-0002-2725-6730","doi":"10.5284/1030449","source-id":"orcid_update","state":"done","claim-action":"create","claimed-at":"2015-07-27T03:52:30Z"}}}'
@@ -1082,43 +1112,45 @@ http_interactions:
1082
1112
  code: 202
1083
1113
  message: ''
1084
1114
  headers:
1085
- Server:
1086
- - openresty/1.11.2.1
1087
- Date:
1088
- - Thu, 02 Feb 2017 14:31:25 GMT
1115
+ Access-Control-Allow-Headers:
1116
+ - Origin, Content-Type, Accept, Authorization, Token
1117
+ Access-Control-Allow-Methods:
1118
+ - GET, POST, OPTIONS
1119
+ Access-Control-Allow-Origin:
1120
+ - "*"
1121
+ Access-Control-Max-Age:
1122
+ - '1728000'
1123
+ Cache-Control:
1124
+ - no-cache
1089
1125
  Content-Type:
1090
1126
  - application/json; charset=utf-8
1091
- Connection:
1092
- - keep-alive
1127
+ Date:
1128
+ - Sat, 11 Mar 2017 10:44:53 GMT
1129
+ Server:
1130
+ - openresty/1.11.2.2
1093
1131
  Status:
1094
1132
  - 202 Accepted
1095
- Cache-Control:
1096
- - no-cache
1097
- Access-Control-Allow-Origin:
1098
- - "*"
1099
1133
  Vary:
1100
1134
  - Accept-Encoding
1101
- Access-Control-Max-Age:
1102
- - '1728000'
1103
- X-Xss-Protection:
1104
- - 1; mode=block
1105
- X-Request-Id:
1106
- - 5a54a057-c677-45d5-a5eb-76587bfe141f
1107
- Access-Control-Allow-Headers:
1108
- - Origin, Content-Type, Accept, Authorization, Token
1109
- Access-Control-Allow-Methods:
1110
- - GET, POST, OPTIONS
1111
- X-Runtime:
1112
- - '0.031849'
1113
- X-Frame-Options:
1114
- - SAMEORIGIN
1115
1135
  X-Content-Type-Options:
1116
1136
  - nosniff
1137
+ X-Frame-Options:
1138
+ - SAMEORIGIN
1117
1139
  X-Powered-By:
1118
1140
  - Phusion Passenger 5.1.2
1141
+ X-Request-Id:
1142
+ - 030f05b8-de32-471b-a4d3-c98a0fed3fbf
1143
+ X-Runtime:
1144
+ - '0.011100'
1145
+ X-Xss-Protection:
1146
+ - 1; mode=block
1147
+ Content-Length:
1148
+ - '237'
1149
+ Connection:
1150
+ - keep-alive
1119
1151
  body:
1120
1152
  encoding: UTF-8
1121
- string: '{"data":{"id":"a85ad7d7-781d-432f-964b-28d1415e66e8","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.745301","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
1153
+ string: '{"data":{"id":"a85ad7d7-781d-432f-964b-28d1415e66e8","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.745301","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1122
1154
  http_version:
1123
1155
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1124
1156
  - request:
@@ -1141,43 +1173,45 @@ http_interactions:
1141
1173
  code: 202
1142
1174
  message: ''
1143
1175
  headers:
1144
- Server:
1145
- - openresty/1.11.2.1
1146
- Date:
1147
- - Thu, 02 Feb 2017 14:31:25 GMT
1176
+ Access-Control-Allow-Headers:
1177
+ - Origin, Content-Type, Accept, Authorization, Token
1178
+ Access-Control-Allow-Methods:
1179
+ - GET, POST, OPTIONS
1180
+ Access-Control-Allow-Origin:
1181
+ - "*"
1182
+ Access-Control-Max-Age:
1183
+ - '1728000'
1184
+ Cache-Control:
1185
+ - no-cache
1148
1186
  Content-Type:
1149
1187
  - application/json; charset=utf-8
1150
- Connection:
1151
- - keep-alive
1188
+ Date:
1189
+ - Sat, 11 Mar 2017 10:44:53 GMT
1190
+ Server:
1191
+ - openresty/1.11.2.2
1152
1192
  Status:
1153
1193
  - 202 Accepted
1154
- Cache-Control:
1155
- - no-cache
1156
- Access-Control-Allow-Origin:
1157
- - "*"
1158
1194
  Vary:
1159
1195
  - Accept-Encoding
1160
- Access-Control-Max-Age:
1161
- - '1728000'
1162
- X-Xss-Protection:
1163
- - 1; mode=block
1164
- X-Request-Id:
1165
- - 811044d4-80af-4a1e-90e7-2deaba310b34
1166
- Access-Control-Allow-Headers:
1167
- - Origin, Content-Type, Accept, Authorization, Token
1168
- Access-Control-Allow-Methods:
1169
- - GET, POST, OPTIONS
1170
- X-Runtime:
1171
- - '0.031359'
1172
- X-Frame-Options:
1173
- - SAMEORIGIN
1174
1196
  X-Content-Type-Options:
1175
1197
  - nosniff
1198
+ X-Frame-Options:
1199
+ - SAMEORIGIN
1176
1200
  X-Powered-By:
1177
1201
  - Phusion Passenger 5.1.2
1202
+ X-Request-Id:
1203
+ - f243c9e3-38e5-4e9e-86ce-a7e2a899909a
1204
+ X-Runtime:
1205
+ - '0.010265'
1206
+ X-Xss-Protection:
1207
+ - 1; mode=block
1208
+ Content-Length:
1209
+ - '237'
1210
+ Connection:
1211
+ - keep-alive
1178
1212
  body:
1179
1213
  encoding: UTF-8
1180
- string: '{"data":{"id":"ceecbf26-026f-4963-a26f-dc5be25a3c4a","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.745313","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
1214
+ string: '{"data":{"id":"ceecbf26-026f-4963-a26f-dc5be25a3c4a","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.745313","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1181
1215
  http_version:
1182
1216
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1183
1217
  - request:
@@ -1200,43 +1234,45 @@ http_interactions:
1200
1234
  code: 202
1201
1235
  message: ''
1202
1236
  headers:
1203
- Server:
1204
- - openresty/1.11.2.1
1205
- Date:
1206
- - Thu, 02 Feb 2017 14:31:26 GMT
1237
+ Access-Control-Allow-Headers:
1238
+ - Origin, Content-Type, Accept, Authorization, Token
1239
+ Access-Control-Allow-Methods:
1240
+ - GET, POST, OPTIONS
1241
+ Access-Control-Allow-Origin:
1242
+ - "*"
1243
+ Access-Control-Max-Age:
1244
+ - '1728000'
1245
+ Cache-Control:
1246
+ - no-cache
1207
1247
  Content-Type:
1208
1248
  - application/json; charset=utf-8
1209
- Connection:
1210
- - keep-alive
1249
+ Date:
1250
+ - Sat, 11 Mar 2017 10:44:53 GMT
1251
+ Server:
1252
+ - openresty/1.11.2.2
1211
1253
  Status:
1212
1254
  - 202 Accepted
1213
- Cache-Control:
1214
- - no-cache
1215
- Access-Control-Allow-Origin:
1216
- - "*"
1217
1255
  Vary:
1218
1256
  - Accept-Encoding
1219
- Access-Control-Max-Age:
1220
- - '1728000'
1221
- X-Xss-Protection:
1222
- - 1; mode=block
1223
- X-Request-Id:
1224
- - 41b4d8b2-26fa-42e9-8e57-c30b58ca43e4
1225
- Access-Control-Allow-Headers:
1226
- - Origin, Content-Type, Accept, Authorization, Token
1227
- Access-Control-Allow-Methods:
1228
- - GET, POST, OPTIONS
1229
- X-Runtime:
1230
- - '0.031540'
1231
- X-Frame-Options:
1232
- - SAMEORIGIN
1233
1257
  X-Content-Type-Options:
1234
1258
  - nosniff
1259
+ X-Frame-Options:
1260
+ - SAMEORIGIN
1235
1261
  X-Powered-By:
1236
1262
  - Phusion Passenger 5.1.2
1263
+ X-Request-Id:
1264
+ - 5502698b-00ce-4ca9-907e-cb4d65bb2fa1
1265
+ X-Runtime:
1266
+ - '0.009797'
1267
+ X-Xss-Protection:
1268
+ - 1; mode=block
1269
+ Content-Length:
1270
+ - '237'
1271
+ Connection:
1272
+ - keep-alive
1237
1273
  body:
1238
1274
  encoding: UTF-8
1239
- string: '{"data":{"id":"7908fa7b-920a-4a23-a974-47732d013abc","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.746960","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
1275
+ string: '{"data":{"id":"7908fa7b-920a-4a23-a974-47732d013abc","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.746960","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1240
1276
  http_version:
1241
1277
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1242
1278
  - request:
@@ -1259,43 +1295,45 @@ http_interactions:
1259
1295
  code: 202
1260
1296
  message: ''
1261
1297
  headers:
1262
- Server:
1263
- - openresty/1.11.2.1
1264
- Date:
1265
- - Thu, 02 Feb 2017 14:31:26 GMT
1298
+ Access-Control-Allow-Headers:
1299
+ - Origin, Content-Type, Accept, Authorization, Token
1300
+ Access-Control-Allow-Methods:
1301
+ - GET, POST, OPTIONS
1302
+ Access-Control-Allow-Origin:
1303
+ - "*"
1304
+ Access-Control-Max-Age:
1305
+ - '1728000'
1306
+ Cache-Control:
1307
+ - no-cache
1266
1308
  Content-Type:
1267
1309
  - application/json; charset=utf-8
1268
- Connection:
1269
- - keep-alive
1310
+ Date:
1311
+ - Sat, 11 Mar 2017 10:44:54 GMT
1312
+ Server:
1313
+ - openresty/1.11.2.2
1270
1314
  Status:
1271
1315
  - 202 Accepted
1272
- Cache-Control:
1273
- - no-cache
1274
- Access-Control-Allow-Origin:
1275
- - "*"
1276
1316
  Vary:
1277
1317
  - Accept-Encoding
1278
- Access-Control-Max-Age:
1279
- - '1728000'
1280
- X-Xss-Protection:
1281
- - 1; mode=block
1282
- X-Request-Id:
1283
- - 7a157883-b7e0-4618-9e41-74eab4614fdb
1284
- Access-Control-Allow-Headers:
1285
- - Origin, Content-Type, Accept, Authorization, Token
1286
- Access-Control-Allow-Methods:
1287
- - GET, POST, OPTIONS
1288
- X-Runtime:
1289
- - '0.033074'
1290
- X-Frame-Options:
1291
- - SAMEORIGIN
1292
1318
  X-Content-Type-Options:
1293
1319
  - nosniff
1320
+ X-Frame-Options:
1321
+ - SAMEORIGIN
1294
1322
  X-Powered-By:
1295
1323
  - Phusion Passenger 5.1.2
1324
+ X-Request-Id:
1325
+ - 97ee9ed0-446d-40f0-9be0-142fca8ed0a9
1326
+ X-Runtime:
1327
+ - '0.010807'
1328
+ X-Xss-Protection:
1329
+ - 1; mode=block
1330
+ Content-Length:
1331
+ - '237'
1332
+ Connection:
1333
+ - keep-alive
1296
1334
  body:
1297
1335
  encoding: UTF-8
1298
- string: '{"data":{"id":"2433e392-00dd-4b2e-866d-c68b1fa6fe00","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.735810","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
1336
+ string: '{"data":{"id":"2433e392-00dd-4b2e-866d-c68b1fa6fe00","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.735810","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1299
1337
  http_version:
1300
1338
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1301
1339
  - request:
@@ -1318,43 +1356,45 @@ http_interactions:
1318
1356
  code: 202
1319
1357
  message: ''
1320
1358
  headers:
1321
- Server:
1322
- - openresty/1.11.2.1
1323
- Date:
1324
- - Thu, 02 Feb 2017 14:31:26 GMT
1359
+ Access-Control-Allow-Headers:
1360
+ - Origin, Content-Type, Accept, Authorization, Token
1361
+ Access-Control-Allow-Methods:
1362
+ - GET, POST, OPTIONS
1363
+ Access-Control-Allow-Origin:
1364
+ - "*"
1365
+ Access-Control-Max-Age:
1366
+ - '1728000'
1367
+ Cache-Control:
1368
+ - no-cache
1325
1369
  Content-Type:
1326
1370
  - application/json; charset=utf-8
1327
- Connection:
1328
- - keep-alive
1371
+ Date:
1372
+ - Sat, 11 Mar 2017 10:44:54 GMT
1373
+ Server:
1374
+ - openresty/1.11.2.2
1329
1375
  Status:
1330
1376
  - 202 Accepted
1331
- Cache-Control:
1332
- - no-cache
1333
- Access-Control-Allow-Origin:
1334
- - "*"
1335
1377
  Vary:
1336
1378
  - Accept-Encoding
1337
- Access-Control-Max-Age:
1338
- - '1728000'
1339
- X-Xss-Protection:
1340
- - 1; mode=block
1341
- X-Request-Id:
1342
- - ed4ef961-d53d-4f5f-b9e5-fbaa1453bca8
1343
- Access-Control-Allow-Headers:
1344
- - Origin, Content-Type, Accept, Authorization, Token
1345
- Access-Control-Allow-Methods:
1346
- - GET, POST, OPTIONS
1347
- X-Runtime:
1348
- - '0.030736'
1349
- X-Frame-Options:
1350
- - SAMEORIGIN
1351
1379
  X-Content-Type-Options:
1352
1380
  - nosniff
1381
+ X-Frame-Options:
1382
+ - SAMEORIGIN
1353
1383
  X-Powered-By:
1354
1384
  - Phusion Passenger 5.1.2
1385
+ X-Request-Id:
1386
+ - a12cdba0-7f41-4f95-a3f3-69007902e180
1387
+ X-Runtime:
1388
+ - '0.020087'
1389
+ X-Xss-Protection:
1390
+ - 1; mode=block
1391
+ Content-Length:
1392
+ - '237'
1393
+ Connection:
1394
+ - keep-alive
1355
1395
  body:
1356
1396
  encoding: UTF-8
1357
- string: '{"data":{"id":"841b8ce7-0a5a-48db-baff-35fc87d39c07","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.735811","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
1397
+ string: '{"data":{"id":"841b8ce7-0a5a-48db-baff-35fc87d39c07","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.735811","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1358
1398
  http_version:
1359
1399
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1360
1400
  - request:
@@ -1377,43 +1417,45 @@ http_interactions:
1377
1417
  code: 202
1378
1418
  message: ''
1379
1419
  headers:
1380
- Server:
1381
- - openresty/1.11.2.1
1382
- Date:
1383
- - Thu, 02 Feb 2017 14:31:27 GMT
1420
+ Access-Control-Allow-Headers:
1421
+ - Origin, Content-Type, Accept, Authorization, Token
1422
+ Access-Control-Allow-Methods:
1423
+ - GET, POST, OPTIONS
1424
+ Access-Control-Allow-Origin:
1425
+ - "*"
1426
+ Access-Control-Max-Age:
1427
+ - '1728000'
1428
+ Cache-Control:
1429
+ - no-cache
1384
1430
  Content-Type:
1385
1431
  - application/json; charset=utf-8
1386
- Connection:
1387
- - keep-alive
1432
+ Date:
1433
+ - Sat, 11 Mar 2017 10:44:54 GMT
1434
+ Server:
1435
+ - openresty/1.11.2.2
1388
1436
  Status:
1389
1437
  - 202 Accepted
1390
- Cache-Control:
1391
- - no-cache
1392
- Access-Control-Allow-Origin:
1393
- - "*"
1394
1438
  Vary:
1395
1439
  - Accept-Encoding
1396
- Access-Control-Max-Age:
1397
- - '1728000'
1398
- X-Xss-Protection:
1399
- - 1; mode=block
1400
- X-Request-Id:
1401
- - 091c1f0a-f00a-45d0-98b6-a6d1ec976c19
1402
- Access-Control-Allow-Headers:
1403
- - Origin, Content-Type, Accept, Authorization, Token
1404
- Access-Control-Allow-Methods:
1405
- - GET, POST, OPTIONS
1406
- X-Runtime:
1407
- - '0.030963'
1408
- X-Frame-Options:
1409
- - SAMEORIGIN
1410
1440
  X-Content-Type-Options:
1411
1441
  - nosniff
1442
+ X-Frame-Options:
1443
+ - SAMEORIGIN
1412
1444
  X-Powered-By:
1413
1445
  - Phusion Passenger 5.1.2
1446
+ X-Request-Id:
1447
+ - ea78e4d8-4a5f-4136-b82c-4bc0358d9ade
1448
+ X-Runtime:
1449
+ - '0.011592'
1450
+ X-Xss-Protection:
1451
+ - 1; mode=block
1452
+ Content-Length:
1453
+ - '237'
1454
+ Connection:
1455
+ - keep-alive
1414
1456
  body:
1415
1457
  encoding: UTF-8
1416
- string: '{"data":{"id":"19061330-0966-42f4-9a7c-bd932be203ac","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.999239","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
1458
+ string: '{"data":{"id":"19061330-0966-42f4-9a7c-bd932be203ac","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.999239","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1417
1459
  http_version:
1418
1460
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1419
1461
  - request:
@@ -1436,43 +1478,43 @@ http_interactions:
1436
1478
  code: 202
1437
1479
  message: ''
1438
1480
  headers:
1439
- Server:
1440
- - openresty/1.11.2.1
1441
- Date:
1442
- - Thu, 02 Feb 2017 14:31:27 GMT
1481
+ Access-Control-Allow-Headers:
1482
+ - Origin, Content-Type, Accept, Authorization, Token
1483
+ Access-Control-Allow-Methods:
1484
+ - GET, POST, OPTIONS
1485
+ Access-Control-Allow-Origin:
1486
+ - "*"
1487
+ Access-Control-Max-Age:
1488
+ - '1728000'
1489
+ Cache-Control:
1490
+ - no-cache
1443
1491
  Content-Type:
1444
1492
  - application/json; charset=utf-8
1445
- Connection:
1446
- - keep-alive
1493
+ Date:
1494
+ - Sat, 11 Mar 2017 10:44:54 GMT
1495
+ Server:
1496
+ - openresty/1.11.2.2
1447
1497
  Status:
1448
1498
  - 202 Accepted
1449
- Cache-Control:
1450
- - no-cache
1451
- Access-Control-Allow-Origin:
1452
- - "*"
1453
1499
  Vary:
1454
1500
  - Accept-Encoding
1455
- Access-Control-Max-Age:
1456
- - '1728000'
1457
- X-Xss-Protection:
1458
- - 1; mode=block
1459
- X-Request-Id:
1460
- - 8d076756-f10e-4882-a815-163eea5c80ad
1461
- Access-Control-Allow-Headers:
1462
- - Origin, Content-Type, Accept, Authorization, Token
1463
- Access-Control-Allow-Methods:
1464
- - GET, POST, OPTIONS
1465
- X-Runtime:
1466
- - '0.031062'
1467
- X-Frame-Options:
1468
- - SAMEORIGIN
1469
1501
  X-Content-Type-Options:
1470
1502
  - nosniff
1503
+ X-Frame-Options:
1504
+ - SAMEORIGIN
1471
1505
  X-Powered-By:
1472
1506
  - Phusion Passenger 5.1.2
1507
+ X-Request-Id:
1508
+ - b17cb7ac-93ce-4fae-99ef-0a13d19c7038
1509
+ X-Runtime:
1510
+ - '0.010325'
1511
+ X-Xss-Protection:
1512
+ - 1; mode=block
1513
+ Connection:
1514
+ - keep-alive
1473
1515
  body:
1474
1516
  encoding: UTF-8
1475
- string: '{"data":{"id":"c1d69cb0-ef38-4d92-8cfc-6c3ef3bd7985","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371077","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
1517
+ string: '{"data":{"id":"c1d69cb0-ef38-4d92-8cfc-6c3ef3bd7985","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371077","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1476
1518
  http_version:
1477
1519
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1478
1520
  - request:
@@ -1495,43 +1537,45 @@ http_interactions:
1495
1537
  code: 202
1496
1538
  message: ''
1497
1539
  headers:
1498
- Server:
1499
- - openresty/1.11.2.1
1500
- Date:
1501
- - Thu, 02 Feb 2017 14:31:27 GMT
1540
+ Access-Control-Allow-Headers:
1541
+ - Origin, Content-Type, Accept, Authorization, Token
1542
+ Access-Control-Allow-Methods:
1543
+ - GET, POST, OPTIONS
1544
+ Access-Control-Allow-Origin:
1545
+ - "*"
1546
+ Access-Control-Max-Age:
1547
+ - '1728000'
1548
+ Cache-Control:
1549
+ - no-cache
1502
1550
  Content-Type:
1503
1551
  - application/json; charset=utf-8
1504
- Connection:
1505
- - keep-alive
1552
+ Date:
1553
+ - Sat, 11 Mar 2017 10:44:54 GMT
1554
+ Server:
1555
+ - openresty/1.11.2.2
1506
1556
  Status:
1507
1557
  - 202 Accepted
1508
- Cache-Control:
1509
- - no-cache
1510
- Access-Control-Allow-Origin:
1511
- - "*"
1512
1558
  Vary:
1513
1559
  - Accept-Encoding
1514
- Access-Control-Max-Age:
1515
- - '1728000'
1516
- X-Xss-Protection:
1517
- - 1; mode=block
1518
- X-Request-Id:
1519
- - 8a2a5dd0-1b42-4c40-ae54-e67caea4d9e4
1520
- Access-Control-Allow-Headers:
1521
- - Origin, Content-Type, Accept, Authorization, Token
1522
- Access-Control-Allow-Methods:
1523
- - GET, POST, OPTIONS
1524
- X-Runtime:
1525
- - '0.031123'
1526
- X-Frame-Options:
1527
- - SAMEORIGIN
1528
1560
  X-Content-Type-Options:
1529
1561
  - nosniff
1562
+ X-Frame-Options:
1563
+ - SAMEORIGIN
1530
1564
  X-Powered-By:
1531
1565
  - Phusion Passenger 5.1.2
1566
+ X-Request-Id:
1567
+ - 0f97c93f-5ca0-4325-bb05-8724c0d3efd4
1568
+ X-Runtime:
1569
+ - '0.010797'
1570
+ X-Xss-Protection:
1571
+ - 1; mode=block
1572
+ Content-Length:
1573
+ - '238'
1574
+ Connection:
1575
+ - keep-alive
1532
1576
  body:
1533
1577
  encoding: UTF-8
1534
- string: '{"data":{"id":"1dbfbcf2-989d-414e-b11d-2769942f4b4b","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371009","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
1578
+ string: '{"data":{"id":"1dbfbcf2-989d-414e-b11d-2769942f4b4b","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371009","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1535
1579
  http_version:
1536
1580
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1537
1581
  - request:
@@ -1554,43 +1598,45 @@ http_interactions:
1554
1598
  code: 202
1555
1599
  message: ''
1556
1600
  headers:
1557
- Server:
1558
- - openresty/1.11.2.1
1559
- Date:
1560
- - Thu, 02 Feb 2017 14:31:27 GMT
1601
+ Access-Control-Allow-Headers:
1602
+ - Origin, Content-Type, Accept, Authorization, Token
1603
+ Access-Control-Allow-Methods:
1604
+ - GET, POST, OPTIONS
1605
+ Access-Control-Allow-Origin:
1606
+ - "*"
1607
+ Access-Control-Max-Age:
1608
+ - '1728000'
1609
+ Cache-Control:
1610
+ - no-cache
1561
1611
  Content-Type:
1562
1612
  - application/json; charset=utf-8
1563
- Connection:
1564
- - keep-alive
1613
+ Date:
1614
+ - Sat, 11 Mar 2017 10:44:55 GMT
1615
+ Server:
1616
+ - openresty/1.11.2.2
1565
1617
  Status:
1566
1618
  - 202 Accepted
1567
- Cache-Control:
1568
- - no-cache
1569
- Access-Control-Allow-Origin:
1570
- - "*"
1571
1619
  Vary:
1572
1620
  - Accept-Encoding
1573
- Access-Control-Max-Age:
1574
- - '1728000'
1575
- X-Xss-Protection:
1576
- - 1; mode=block
1577
- X-Request-Id:
1578
- - 91b6bf1b-b502-45fd-bace-95bd68381f50
1579
- Access-Control-Allow-Headers:
1580
- - Origin, Content-Type, Accept, Authorization, Token
1581
- Access-Control-Allow-Methods:
1582
- - GET, POST, OPTIONS
1583
- X-Runtime:
1584
- - '0.031030'
1585
- X-Frame-Options:
1586
- - SAMEORIGIN
1587
1621
  X-Content-Type-Options:
1588
1622
  - nosniff
1623
+ X-Frame-Options:
1624
+ - SAMEORIGIN
1589
1625
  X-Powered-By:
1590
1626
  - Phusion Passenger 5.1.2
1627
+ X-Request-Id:
1628
+ - 0b6336a8-0d69-4ca2-a3fd-3f18d5fa7bba
1629
+ X-Runtime:
1630
+ - '0.012387'
1631
+ X-Xss-Protection:
1632
+ - 1; mode=block
1633
+ Content-Length:
1634
+ - '238'
1635
+ Connection:
1636
+ - keep-alive
1591
1637
  body:
1592
1638
  encoding: UTF-8
1593
- string: '{"data":{"id":"e61ee6a1-9bd7-4bcb-b040-26c721bd5335","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371008","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
1639
+ string: '{"data":{"id":"e61ee6a1-9bd7-4bcb-b040-26c721bd5335","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371008","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1594
1640
  http_version:
1595
1641
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1596
1642
  - request:
@@ -1613,43 +1659,43 @@ http_interactions:
1613
1659
  code: 202
1614
1660
  message: ''
1615
1661
  headers:
1616
- Server:
1617
- - openresty/1.11.2.1
1618
- Date:
1619
- - Thu, 02 Feb 2017 14:31:28 GMT
1662
+ Access-Control-Allow-Headers:
1663
+ - Origin, Content-Type, Accept, Authorization, Token
1664
+ Access-Control-Allow-Methods:
1665
+ - GET, POST, OPTIONS
1666
+ Access-Control-Allow-Origin:
1667
+ - "*"
1668
+ Access-Control-Max-Age:
1669
+ - '1728000'
1670
+ Cache-Control:
1671
+ - no-cache
1620
1672
  Content-Type:
1621
1673
  - application/json; charset=utf-8
1622
- Connection:
1623
- - keep-alive
1674
+ Date:
1675
+ - Sat, 11 Mar 2017 10:44:55 GMT
1676
+ Server:
1677
+ - openresty/1.11.2.2
1624
1678
  Status:
1625
1679
  - 202 Accepted
1626
- Cache-Control:
1627
- - no-cache
1628
- Access-Control-Allow-Origin:
1629
- - "*"
1630
1680
  Vary:
1631
1681
  - Accept-Encoding
1632
- Access-Control-Max-Age:
1633
- - '1728000'
1634
- X-Xss-Protection:
1635
- - 1; mode=block
1636
- X-Request-Id:
1637
- - ed56ed3c-a4c0-487c-8cf1-0bc99c35e1ab
1638
- Access-Control-Allow-Headers:
1639
- - Origin, Content-Type, Accept, Authorization, Token
1640
- Access-Control-Allow-Methods:
1641
- - GET, POST, OPTIONS
1642
- X-Runtime:
1643
- - '0.031078'
1644
- X-Frame-Options:
1645
- - SAMEORIGIN
1646
1682
  X-Content-Type-Options:
1647
1683
  - nosniff
1684
+ X-Frame-Options:
1685
+ - SAMEORIGIN
1648
1686
  X-Powered-By:
1649
1687
  - Phusion Passenger 5.1.2
1688
+ X-Request-Id:
1689
+ - 53913ef4-fba2-496c-b2c9-dbe57decb84b
1690
+ X-Runtime:
1691
+ - '0.010690'
1692
+ X-Xss-Protection:
1693
+ - 1; mode=block
1694
+ Connection:
1695
+ - keep-alive
1650
1696
  body:
1651
1697
  encoding: UTF-8
1652
- string: '{"data":{"id":"32c6e155-615a-4482-b48b-1dffa04cc164","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371010","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
1698
+ string: '{"data":{"id":"32c6e155-615a-4482-b48b-1dffa04cc164","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371010","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1653
1699
  http_version:
1654
1700
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1655
1701
  - request:
@@ -1672,43 +1718,45 @@ http_interactions:
1672
1718
  code: 202
1673
1719
  message: ''
1674
1720
  headers:
1675
- Server:
1676
- - openresty/1.11.2.1
1677
- Date:
1678
- - Thu, 02 Feb 2017 14:31:28 GMT
1721
+ Access-Control-Allow-Headers:
1722
+ - Origin, Content-Type, Accept, Authorization, Token
1723
+ Access-Control-Allow-Methods:
1724
+ - GET, POST, OPTIONS
1725
+ Access-Control-Allow-Origin:
1726
+ - "*"
1727
+ Access-Control-Max-Age:
1728
+ - '1728000'
1729
+ Cache-Control:
1730
+ - no-cache
1679
1731
  Content-Type:
1680
1732
  - application/json; charset=utf-8
1681
- Connection:
1682
- - keep-alive
1733
+ Date:
1734
+ - Sat, 11 Mar 2017 10:44:55 GMT
1735
+ Server:
1736
+ - openresty/1.11.2.2
1683
1737
  Status:
1684
1738
  - 202 Accepted
1685
- Cache-Control:
1686
- - no-cache
1687
- Access-Control-Allow-Origin:
1688
- - "*"
1689
1739
  Vary:
1690
1740
  - Accept-Encoding
1691
- Access-Control-Max-Age:
1692
- - '1728000'
1693
- X-Xss-Protection:
1694
- - 1; mode=block
1695
- X-Request-Id:
1696
- - 309b7708-678d-4dbb-92e7-b33a7f96fdb7
1697
- Access-Control-Allow-Headers:
1698
- - Origin, Content-Type, Accept, Authorization, Token
1699
- Access-Control-Allow-Methods:
1700
- - GET, POST, OPTIONS
1701
- X-Runtime:
1702
- - '0.031063'
1703
- X-Frame-Options:
1704
- - SAMEORIGIN
1705
1741
  X-Content-Type-Options:
1706
1742
  - nosniff
1743
+ X-Frame-Options:
1744
+ - SAMEORIGIN
1707
1745
  X-Powered-By:
1708
1746
  - Phusion Passenger 5.1.2
1747
+ X-Request-Id:
1748
+ - 511b559e-f81a-4305-b34c-585debaed613
1749
+ X-Runtime:
1750
+ - '0.010038'
1751
+ X-Xss-Protection:
1752
+ - 1; mode=block
1753
+ Content-Length:
1754
+ - '238'
1755
+ Connection:
1756
+ - keep-alive
1709
1757
  body:
1710
1758
  encoding: UTF-8
1711
- string: '{"data":{"id":"99a2eb18-8fb7-4550-bf1e-315087cd5336","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371011","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
1759
+ string: '{"data":{"id":"99a2eb18-8fb7-4550-bf1e-315087cd5336","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371011","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1712
1760
  http_version:
1713
1761
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1714
1762
  - request:
@@ -1731,43 +1779,45 @@ http_interactions:
1731
1779
  code: 202
1732
1780
  message: ''
1733
1781
  headers:
1734
- Server:
1735
- - openresty/1.11.2.1
1736
- Date:
1737
- - Thu, 02 Feb 2017 14:31:28 GMT
1782
+ Access-Control-Allow-Headers:
1783
+ - Origin, Content-Type, Accept, Authorization, Token
1784
+ Access-Control-Allow-Methods:
1785
+ - GET, POST, OPTIONS
1786
+ Access-Control-Allow-Origin:
1787
+ - "*"
1788
+ Access-Control-Max-Age:
1789
+ - '1728000'
1790
+ Cache-Control:
1791
+ - no-cache
1738
1792
  Content-Type:
1739
1793
  - application/json; charset=utf-8
1740
- Connection:
1741
- - keep-alive
1794
+ Date:
1795
+ - Sat, 11 Mar 2017 10:44:55 GMT
1796
+ Server:
1797
+ - openresty/1.11.2.2
1742
1798
  Status:
1743
1799
  - 202 Accepted
1744
- Cache-Control:
1745
- - no-cache
1746
- Access-Control-Allow-Origin:
1747
- - "*"
1748
1800
  Vary:
1749
1801
  - Accept-Encoding
1750
- Access-Control-Max-Age:
1751
- - '1728000'
1752
- X-Xss-Protection:
1753
- - 1; mode=block
1754
- X-Request-Id:
1755
- - 413977d6-d981-49e6-be15-37b41e615d8e
1756
- Access-Control-Allow-Headers:
1757
- - Origin, Content-Type, Accept, Authorization, Token
1758
- Access-Control-Allow-Methods:
1759
- - GET, POST, OPTIONS
1760
- X-Runtime:
1761
- - '0.030924'
1762
- X-Frame-Options:
1763
- - SAMEORIGIN
1764
1802
  X-Content-Type-Options:
1765
1803
  - nosniff
1804
+ X-Frame-Options:
1805
+ - SAMEORIGIN
1766
1806
  X-Powered-By:
1767
1807
  - Phusion Passenger 5.1.2
1808
+ X-Request-Id:
1809
+ - c8700dfb-b0e2-46bc-8be4-83dcd5a2f834
1810
+ X-Runtime:
1811
+ - '0.010156'
1812
+ X-Xss-Protection:
1813
+ - 1; mode=block
1814
+ Content-Length:
1815
+ - '238'
1816
+ Connection:
1817
+ - keep-alive
1768
1818
  body:
1769
1819
  encoding: UTF-8
1770
- string: '{"data":{"id":"a63d3ff4-2477-4531-892a-7eaea47944df","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371013","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
1820
+ string: '{"data":{"id":"a63d3ff4-2477-4531-892a-7eaea47944df","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371013","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1771
1821
  http_version:
1772
1822
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1773
1823
  - request:
@@ -1790,43 +1840,45 @@ http_interactions:
1790
1840
  code: 202
1791
1841
  message: ''
1792
1842
  headers:
1793
- Server:
1794
- - openresty/1.11.2.1
1795
- Date:
1796
- - Thu, 02 Feb 2017 14:31:28 GMT
1843
+ Access-Control-Allow-Headers:
1844
+ - Origin, Content-Type, Accept, Authorization, Token
1845
+ Access-Control-Allow-Methods:
1846
+ - GET, POST, OPTIONS
1847
+ Access-Control-Allow-Origin:
1848
+ - "*"
1849
+ Access-Control-Max-Age:
1850
+ - '1728000'
1851
+ Cache-Control:
1852
+ - no-cache
1797
1853
  Content-Type:
1798
1854
  - application/json; charset=utf-8
1799
- Connection:
1800
- - keep-alive
1855
+ Date:
1856
+ - Sat, 11 Mar 2017 10:44:56 GMT
1857
+ Server:
1858
+ - openresty/1.11.2.2
1801
1859
  Status:
1802
1860
  - 202 Accepted
1803
- Cache-Control:
1804
- - no-cache
1805
- Access-Control-Allow-Origin:
1806
- - "*"
1807
1861
  Vary:
1808
1862
  - Accept-Encoding
1809
- Access-Control-Max-Age:
1810
- - '1728000'
1811
- X-Xss-Protection:
1812
- - 1; mode=block
1813
- X-Request-Id:
1814
- - cf30d459-52a7-47cc-830f-c616a2f74ea0
1815
- Access-Control-Allow-Headers:
1816
- - Origin, Content-Type, Accept, Authorization, Token
1817
- Access-Control-Allow-Methods:
1818
- - GET, POST, OPTIONS
1819
- X-Runtime:
1820
- - '0.031032'
1821
- X-Frame-Options:
1822
- - SAMEORIGIN
1823
1863
  X-Content-Type-Options:
1824
1864
  - nosniff
1865
+ X-Frame-Options:
1866
+ - SAMEORIGIN
1825
1867
  X-Powered-By:
1826
1868
  - Phusion Passenger 5.1.2
1869
+ X-Request-Id:
1870
+ - bab6bc50-e0ed-4259-a4fa-0ca762ba8656
1871
+ X-Runtime:
1872
+ - '0.012770'
1873
+ X-Xss-Protection:
1874
+ - 1; mode=block
1875
+ Content-Length:
1876
+ - '238'
1877
+ Connection:
1878
+ - keep-alive
1827
1879
  body:
1828
1880
  encoding: UTF-8
1829
- string: '{"data":{"id":"52a6310b-3f2c-4e19-9968-b255118eb622","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371014","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
1881
+ string: '{"data":{"id":"52a6310b-3f2c-4e19-9968-b255118eb622","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371014","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1830
1882
  http_version:
1831
1883
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1832
1884
  - request:
@@ -1849,43 +1901,45 @@ http_interactions:
1849
1901
  code: 202
1850
1902
  message: ''
1851
1903
  headers:
1852
- Server:
1853
- - openresty/1.11.2.1
1854
- Date:
1855
- - Thu, 02 Feb 2017 14:31:29 GMT
1904
+ Access-Control-Allow-Headers:
1905
+ - Origin, Content-Type, Accept, Authorization, Token
1906
+ Access-Control-Allow-Methods:
1907
+ - GET, POST, OPTIONS
1908
+ Access-Control-Allow-Origin:
1909
+ - "*"
1910
+ Access-Control-Max-Age:
1911
+ - '1728000'
1912
+ Cache-Control:
1913
+ - no-cache
1856
1914
  Content-Type:
1857
1915
  - application/json; charset=utf-8
1858
- Connection:
1859
- - keep-alive
1916
+ Date:
1917
+ - Sat, 11 Mar 2017 10:44:56 GMT
1918
+ Server:
1919
+ - openresty/1.11.2.2
1860
1920
  Status:
1861
1921
  - 202 Accepted
1862
- Cache-Control:
1863
- - no-cache
1864
- Access-Control-Allow-Origin:
1865
- - "*"
1866
1922
  Vary:
1867
1923
  - Accept-Encoding
1868
- Access-Control-Max-Age:
1869
- - '1728000'
1870
- X-Xss-Protection:
1871
- - 1; mode=block
1872
- X-Request-Id:
1873
- - 38e7f4c4-6f62-4402-b8c9-a6912f854a85
1874
- Access-Control-Allow-Headers:
1875
- - Origin, Content-Type, Accept, Authorization, Token
1876
- Access-Control-Allow-Methods:
1877
- - GET, POST, OPTIONS
1878
- X-Runtime:
1879
- - '0.031003'
1880
- X-Frame-Options:
1881
- - SAMEORIGIN
1882
1924
  X-Content-Type-Options:
1883
1925
  - nosniff
1926
+ X-Frame-Options:
1927
+ - SAMEORIGIN
1884
1928
  X-Powered-By:
1885
1929
  - Phusion Passenger 5.1.2
1930
+ X-Request-Id:
1931
+ - 97760f5f-20df-4372-ba6c-d5fe173c498b
1932
+ X-Runtime:
1933
+ - '0.010774'
1934
+ X-Xss-Protection:
1935
+ - 1; mode=block
1936
+ Content-Length:
1937
+ - '238'
1938
+ Connection:
1939
+ - keep-alive
1886
1940
  body:
1887
1941
  encoding: UTF-8
1888
- string: '{"data":{"id":"7ab7e57c-f1f9-41b6-81b2-b9a090580302","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371012","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
1942
+ string: '{"data":{"id":"7ab7e57c-f1f9-41b6-81b2-b9a090580302","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371012","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1889
1943
  http_version:
1890
1944
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1891
1945
  - request:
@@ -1908,43 +1962,45 @@ http_interactions:
1908
1962
  code: 202
1909
1963
  message: ''
1910
1964
  headers:
1911
- Server:
1912
- - openresty/1.11.2.1
1913
- Date:
1914
- - Thu, 02 Feb 2017 14:31:29 GMT
1965
+ Access-Control-Allow-Headers:
1966
+ - Origin, Content-Type, Accept, Authorization, Token
1967
+ Access-Control-Allow-Methods:
1968
+ - GET, POST, OPTIONS
1969
+ Access-Control-Allow-Origin:
1970
+ - "*"
1971
+ Access-Control-Max-Age:
1972
+ - '1728000'
1973
+ Cache-Control:
1974
+ - no-cache
1915
1975
  Content-Type:
1916
1976
  - application/json; charset=utf-8
1917
- Connection:
1918
- - keep-alive
1977
+ Date:
1978
+ - Sat, 11 Mar 2017 10:44:56 GMT
1979
+ Server:
1980
+ - openresty/1.11.2.2
1919
1981
  Status:
1920
1982
  - 202 Accepted
1921
- Cache-Control:
1922
- - no-cache
1923
- Access-Control-Allow-Origin:
1924
- - "*"
1925
1983
  Vary:
1926
1984
  - Accept-Encoding
1927
- Access-Control-Max-Age:
1928
- - '1728000'
1929
- X-Xss-Protection:
1930
- - 1; mode=block
1931
- X-Request-Id:
1932
- - 5360607c-76f0-4a14-bca6-7ccf0899eee0
1933
- Access-Control-Allow-Headers:
1934
- - Origin, Content-Type, Accept, Authorization, Token
1935
- Access-Control-Allow-Methods:
1936
- - GET, POST, OPTIONS
1937
- X-Runtime:
1938
- - '0.031012'
1939
- X-Frame-Options:
1940
- - SAMEORIGIN
1941
1985
  X-Content-Type-Options:
1942
1986
  - nosniff
1987
+ X-Frame-Options:
1988
+ - SAMEORIGIN
1943
1989
  X-Powered-By:
1944
1990
  - Phusion Passenger 5.1.2
1991
+ X-Request-Id:
1992
+ - 17fbc046-202d-4cfe-8ef7-aea52d9a5883
1993
+ X-Runtime:
1994
+ - '0.010283'
1995
+ X-Xss-Protection:
1996
+ - 1; mode=block
1997
+ Content-Length:
1998
+ - '238'
1999
+ Connection:
2000
+ - keep-alive
1945
2001
  body:
1946
2002
  encoding: UTF-8
1947
- string: '{"data":{"id":"3b24c6f1-bd79-4fff-a1dd-b51398dcee6d","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371015","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2003
+ string: '{"data":{"id":"3b24c6f1-bd79-4fff-a1dd-b51398dcee6d","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371015","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
1948
2004
  http_version:
1949
2005
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
1950
2006
  - request:
@@ -1967,43 +2023,45 @@ http_interactions:
1967
2023
  code: 202
1968
2024
  message: ''
1969
2025
  headers:
1970
- Server:
1971
- - openresty/1.11.2.1
1972
- Date:
1973
- - Thu, 02 Feb 2017 14:31:29 GMT
2026
+ Access-Control-Allow-Headers:
2027
+ - Origin, Content-Type, Accept, Authorization, Token
2028
+ Access-Control-Allow-Methods:
2029
+ - GET, POST, OPTIONS
2030
+ Access-Control-Allow-Origin:
2031
+ - "*"
2032
+ Access-Control-Max-Age:
2033
+ - '1728000'
2034
+ Cache-Control:
2035
+ - no-cache
1974
2036
  Content-Type:
1975
2037
  - application/json; charset=utf-8
1976
- Connection:
1977
- - keep-alive
2038
+ Date:
2039
+ - Sat, 11 Mar 2017 10:44:56 GMT
2040
+ Server:
2041
+ - openresty/1.11.2.2
1978
2042
  Status:
1979
2043
  - 202 Accepted
1980
- Cache-Control:
1981
- - no-cache
1982
- Access-Control-Allow-Origin:
1983
- - "*"
1984
2044
  Vary:
1985
2045
  - Accept-Encoding
1986
- Access-Control-Max-Age:
1987
- - '1728000'
1988
- X-Xss-Protection:
1989
- - 1; mode=block
1990
- X-Request-Id:
1991
- - 6326d216-8177-4e46-a055-49fa717bcd9f
1992
- Access-Control-Allow-Headers:
1993
- - Origin, Content-Type, Accept, Authorization, Token
1994
- Access-Control-Allow-Methods:
1995
- - GET, POST, OPTIONS
1996
- X-Runtime:
1997
- - '0.031259'
1998
- X-Frame-Options:
1999
- - SAMEORIGIN
2000
2046
  X-Content-Type-Options:
2001
2047
  - nosniff
2048
+ X-Frame-Options:
2049
+ - SAMEORIGIN
2002
2050
  X-Powered-By:
2003
2051
  - Phusion Passenger 5.1.2
2052
+ X-Request-Id:
2053
+ - 34c646f4-878d-4815-982f-9decb628bf66
2054
+ X-Runtime:
2055
+ - '0.011412'
2056
+ X-Xss-Protection:
2057
+ - 1; mode=block
2058
+ Content-Length:
2059
+ - '238'
2060
+ Connection:
2061
+ - keep-alive
2004
2062
  body:
2005
2063
  encoding: UTF-8
2006
- string: '{"data":{"id":"43cd0a78-3ce4-4895-a93d-bd70949ec867","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371017","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2064
+ string: '{"data":{"id":"43cd0a78-3ce4-4895-a93d-bd70949ec867","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371017","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2007
2065
  http_version:
2008
2066
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2009
2067
  - request:
@@ -2026,43 +2084,45 @@ http_interactions:
2026
2084
  code: 202
2027
2085
  message: ''
2028
2086
  headers:
2029
- Server:
2030
- - openresty/1.11.2.1
2031
- Date:
2032
- - Thu, 02 Feb 2017 14:31:29 GMT
2087
+ Access-Control-Allow-Headers:
2088
+ - Origin, Content-Type, Accept, Authorization, Token
2089
+ Access-Control-Allow-Methods:
2090
+ - GET, POST, OPTIONS
2091
+ Access-Control-Allow-Origin:
2092
+ - "*"
2093
+ Access-Control-Max-Age:
2094
+ - '1728000'
2095
+ Cache-Control:
2096
+ - no-cache
2033
2097
  Content-Type:
2034
2098
  - application/json; charset=utf-8
2035
- Connection:
2036
- - keep-alive
2099
+ Date:
2100
+ - Sat, 11 Mar 2017 10:44:57 GMT
2101
+ Server:
2102
+ - openresty/1.11.2.2
2037
2103
  Status:
2038
2104
  - 202 Accepted
2039
- Cache-Control:
2040
- - no-cache
2041
- Access-Control-Allow-Origin:
2042
- - "*"
2043
2105
  Vary:
2044
2106
  - Accept-Encoding
2045
- Access-Control-Max-Age:
2046
- - '1728000'
2047
- X-Xss-Protection:
2048
- - 1; mode=block
2049
- X-Request-Id:
2050
- - c5674bc3-1cef-4345-bfc4-2d08fc7a47fb
2051
- Access-Control-Allow-Headers:
2052
- - Origin, Content-Type, Accept, Authorization, Token
2053
- Access-Control-Allow-Methods:
2054
- - GET, POST, OPTIONS
2055
- X-Runtime:
2056
- - '0.030873'
2057
- X-Frame-Options:
2058
- - SAMEORIGIN
2059
2107
  X-Content-Type-Options:
2060
2108
  - nosniff
2109
+ X-Frame-Options:
2110
+ - SAMEORIGIN
2061
2111
  X-Powered-By:
2062
2112
  - Phusion Passenger 5.1.2
2113
+ X-Request-Id:
2114
+ - 6c5c55ae-6d84-442b-8959-241501f5969d
2115
+ X-Runtime:
2116
+ - '0.012149'
2117
+ X-Xss-Protection:
2118
+ - 1; mode=block
2119
+ Content-Length:
2120
+ - '238'
2121
+ Connection:
2122
+ - keep-alive
2063
2123
  body:
2064
2124
  encoding: UTF-8
2065
- string: '{"data":{"id":"1dc04933-4123-43cf-af50-10f85166b56d","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371018","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2125
+ string: '{"data":{"id":"1dc04933-4123-43cf-af50-10f85166b56d","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371018","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2066
2126
  http_version:
2067
2127
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2068
2128
  - request:
@@ -2085,43 +2145,45 @@ http_interactions:
2085
2145
  code: 202
2086
2146
  message: ''
2087
2147
  headers:
2088
- Server:
2089
- - openresty/1.11.2.1
2090
- Date:
2091
- - Thu, 02 Feb 2017 14:31:30 GMT
2148
+ Access-Control-Allow-Headers:
2149
+ - Origin, Content-Type, Accept, Authorization, Token
2150
+ Access-Control-Allow-Methods:
2151
+ - GET, POST, OPTIONS
2152
+ Access-Control-Allow-Origin:
2153
+ - "*"
2154
+ Access-Control-Max-Age:
2155
+ - '1728000'
2156
+ Cache-Control:
2157
+ - no-cache
2092
2158
  Content-Type:
2093
2159
  - application/json; charset=utf-8
2094
- Connection:
2095
- - keep-alive
2160
+ Date:
2161
+ - Sat, 11 Mar 2017 10:44:57 GMT
2162
+ Server:
2163
+ - openresty/1.11.2.2
2096
2164
  Status:
2097
2165
  - 202 Accepted
2098
- Cache-Control:
2099
- - no-cache
2100
- Access-Control-Allow-Origin:
2101
- - "*"
2102
2166
  Vary:
2103
2167
  - Accept-Encoding
2104
- Access-Control-Max-Age:
2105
- - '1728000'
2106
- X-Xss-Protection:
2107
- - 1; mode=block
2108
- X-Request-Id:
2109
- - 2c85af86-19b9-43c8-bcf4-9cdfa7cf7913
2110
- Access-Control-Allow-Headers:
2111
- - Origin, Content-Type, Accept, Authorization, Token
2112
- Access-Control-Allow-Methods:
2113
- - GET, POST, OPTIONS
2114
- X-Runtime:
2115
- - '0.033710'
2116
- X-Frame-Options:
2117
- - SAMEORIGIN
2118
2168
  X-Content-Type-Options:
2119
2169
  - nosniff
2170
+ X-Frame-Options:
2171
+ - SAMEORIGIN
2120
2172
  X-Powered-By:
2121
2173
  - Phusion Passenger 5.1.2
2174
+ X-Request-Id:
2175
+ - ac766b5c-f3ba-4141-88ab-f361adce05ae
2176
+ X-Runtime:
2177
+ - '0.011196'
2178
+ X-Xss-Protection:
2179
+ - 1; mode=block
2180
+ Content-Length:
2181
+ - '238'
2182
+ Connection:
2183
+ - keep-alive
2122
2184
  body:
2123
2185
  encoding: UTF-8
2124
- string: '{"data":{"id":"87d4e8ae-4697-4ea9-9351-4061b88ccb5c","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371016","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2186
+ string: '{"data":{"id":"87d4e8ae-4697-4ea9-9351-4061b88ccb5c","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371016","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2125
2187
  http_version:
2126
2188
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2127
2189
  - request:
@@ -2144,43 +2206,45 @@ http_interactions:
2144
2206
  code: 202
2145
2207
  message: ''
2146
2208
  headers:
2147
- Server:
2148
- - openresty/1.11.2.1
2149
- Date:
2150
- - Thu, 02 Feb 2017 14:31:30 GMT
2209
+ Access-Control-Allow-Headers:
2210
+ - Origin, Content-Type, Accept, Authorization, Token
2211
+ Access-Control-Allow-Methods:
2212
+ - GET, POST, OPTIONS
2213
+ Access-Control-Allow-Origin:
2214
+ - "*"
2215
+ Access-Control-Max-Age:
2216
+ - '1728000'
2217
+ Cache-Control:
2218
+ - no-cache
2151
2219
  Content-Type:
2152
2220
  - application/json; charset=utf-8
2153
- Connection:
2154
- - keep-alive
2221
+ Date:
2222
+ - Sat, 11 Mar 2017 10:44:57 GMT
2223
+ Server:
2224
+ - openresty/1.11.2.2
2155
2225
  Status:
2156
2226
  - 202 Accepted
2157
- Cache-Control:
2158
- - no-cache
2159
- Access-Control-Allow-Origin:
2160
- - "*"
2161
2227
  Vary:
2162
2228
  - Accept-Encoding
2163
- Access-Control-Max-Age:
2164
- - '1728000'
2165
- X-Xss-Protection:
2166
- - 1; mode=block
2167
- X-Request-Id:
2168
- - 3af165ba-bed9-4cf6-bbc6-464c6601a150
2169
- Access-Control-Allow-Headers:
2170
- - Origin, Content-Type, Accept, Authorization, Token
2171
- Access-Control-Allow-Methods:
2172
- - GET, POST, OPTIONS
2173
- X-Runtime:
2174
- - '0.031476'
2175
- X-Frame-Options:
2176
- - SAMEORIGIN
2177
2229
  X-Content-Type-Options:
2178
2230
  - nosniff
2231
+ X-Frame-Options:
2232
+ - SAMEORIGIN
2179
2233
  X-Powered-By:
2180
2234
  - Phusion Passenger 5.1.2
2235
+ X-Request-Id:
2236
+ - c91f20b8-3a54-47ea-8fc4-7468c0ef69d5
2237
+ X-Runtime:
2238
+ - '0.010660'
2239
+ X-Xss-Protection:
2240
+ - 1; mode=block
2241
+ Content-Length:
2242
+ - '238'
2243
+ Connection:
2244
+ - keep-alive
2181
2245
  body:
2182
2246
  encoding: UTF-8
2183
- string: '{"data":{"id":"4367157a-4822-4e72-ba9b-72d7ab7b9a14","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371019","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2247
+ string: '{"data":{"id":"4367157a-4822-4e72-ba9b-72d7ab7b9a14","type":"claims","attributes":{"orcid":"0000-0001-5921-2399","doi":"10.6084/M9.FIGSHARE.1371019","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2184
2248
  http_version:
2185
2249
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2186
2250
  - request:
@@ -2203,43 +2267,45 @@ http_interactions:
2203
2267
  code: 202
2204
2268
  message: ''
2205
2269
  headers:
2206
- Server:
2207
- - openresty/1.11.2.1
2208
- Date:
2209
- - Thu, 02 Feb 2017 14:31:30 GMT
2270
+ Access-Control-Allow-Headers:
2271
+ - Origin, Content-Type, Accept, Authorization, Token
2272
+ Access-Control-Allow-Methods:
2273
+ - GET, POST, OPTIONS
2274
+ Access-Control-Allow-Origin:
2275
+ - "*"
2276
+ Access-Control-Max-Age:
2277
+ - '1728000'
2278
+ Cache-Control:
2279
+ - no-cache
2210
2280
  Content-Type:
2211
2281
  - application/json; charset=utf-8
2212
- Connection:
2213
- - keep-alive
2282
+ Date:
2283
+ - Sat, 11 Mar 2017 10:44:57 GMT
2284
+ Server:
2285
+ - openresty/1.11.2.2
2214
2286
  Status:
2215
2287
  - 202 Accepted
2216
- Cache-Control:
2217
- - no-cache
2218
- Access-Control-Allow-Origin:
2219
- - "*"
2220
2288
  Vary:
2221
2289
  - Accept-Encoding
2222
- Access-Control-Max-Age:
2223
- - '1728000'
2224
- X-Xss-Protection:
2225
- - 1; mode=block
2226
- X-Request-Id:
2227
- - b1fdd0f0-51f4-4482-bc31-2a32d4d04057
2228
- Access-Control-Allow-Headers:
2229
- - Origin, Content-Type, Accept, Authorization, Token
2230
- Access-Control-Allow-Methods:
2231
- - GET, POST, OPTIONS
2232
- X-Runtime:
2233
- - '0.031358'
2234
- X-Frame-Options:
2235
- - SAMEORIGIN
2236
2290
  X-Content-Type-Options:
2237
2291
  - nosniff
2292
+ X-Frame-Options:
2293
+ - SAMEORIGIN
2238
2294
  X-Powered-By:
2239
2295
  - Phusion Passenger 5.1.2
2296
+ X-Request-Id:
2297
+ - 7bcf92ec-e31c-4672-987f-216c015953ac
2298
+ X-Runtime:
2299
+ - '0.009770'
2300
+ X-Xss-Protection:
2301
+ - 1; mode=block
2302
+ Content-Length:
2303
+ - '238'
2304
+ Connection:
2305
+ - keep-alive
2240
2306
  body:
2241
2307
  encoding: UTF-8
2242
- string: '{"data":{"id":"6a26f1ff-5384-404c-8e56-f428717f2c78","type":"claims","attributes":{"orcid":"0000-0001-5882-6823","doi":"10.6084/M9.FIGSHARE.1371114","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2308
+ string: '{"data":{"id":"6a26f1ff-5384-404c-8e56-f428717f2c78","type":"claims","attributes":{"orcid":"0000-0001-5882-6823","doi":"10.6084/M9.FIGSHARE.1371114","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2243
2309
  http_version:
2244
2310
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2245
2311
  - request:
@@ -2262,43 +2328,45 @@ http_interactions:
2262
2328
  code: 202
2263
2329
  message: ''
2264
2330
  headers:
2265
- Server:
2266
- - openresty/1.11.2.1
2267
- Date:
2268
- - Thu, 02 Feb 2017 14:31:31 GMT
2331
+ Access-Control-Allow-Headers:
2332
+ - Origin, Content-Type, Accept, Authorization, Token
2333
+ Access-Control-Allow-Methods:
2334
+ - GET, POST, OPTIONS
2335
+ Access-Control-Allow-Origin:
2336
+ - "*"
2337
+ Access-Control-Max-Age:
2338
+ - '1728000'
2339
+ Cache-Control:
2340
+ - no-cache
2269
2341
  Content-Type:
2270
2342
  - application/json; charset=utf-8
2271
- Connection:
2272
- - keep-alive
2343
+ Date:
2344
+ - Sat, 11 Mar 2017 10:44:58 GMT
2345
+ Server:
2346
+ - openresty/1.11.2.2
2273
2347
  Status:
2274
2348
  - 202 Accepted
2275
- Cache-Control:
2276
- - no-cache
2277
- Access-Control-Allow-Origin:
2278
- - "*"
2279
2349
  Vary:
2280
2350
  - Accept-Encoding
2281
- Access-Control-Max-Age:
2282
- - '1728000'
2283
- X-Xss-Protection:
2284
- - 1; mode=block
2285
- X-Request-Id:
2286
- - 423b6c2d-34e6-4a3c-9154-77a44f197b60
2287
- Access-Control-Allow-Headers:
2288
- - Origin, Content-Type, Accept, Authorization, Token
2289
- Access-Control-Allow-Methods:
2290
- - GET, POST, OPTIONS
2291
- X-Runtime:
2292
- - '0.031412'
2293
- X-Frame-Options:
2294
- - SAMEORIGIN
2295
2351
  X-Content-Type-Options:
2296
2352
  - nosniff
2353
+ X-Frame-Options:
2354
+ - SAMEORIGIN
2297
2355
  X-Powered-By:
2298
2356
  - Phusion Passenger 5.1.2
2357
+ X-Request-Id:
2358
+ - fdbcb928-592b-424a-8dea-b40700202084
2359
+ X-Runtime:
2360
+ - '0.011291'
2361
+ X-Xss-Protection:
2362
+ - 1; mode=block
2363
+ Content-Length:
2364
+ - '238'
2365
+ Connection:
2366
+ - keep-alive
2299
2367
  body:
2300
2368
  encoding: UTF-8
2301
- string: '{"data":{"id":"d159d868-ba16-46e1-a98b-30efcd0749c6","type":"claims","attributes":{"orcid":"0000-0001-5882-6823","doi":"10.6084/M9.FIGSHARE.1337953","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2369
+ string: '{"data":{"id":"d159d868-ba16-46e1-a98b-30efcd0749c6","type":"claims","attributes":{"orcid":"0000-0001-5882-6823","doi":"10.6084/M9.FIGSHARE.1337953","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2302
2370
  http_version:
2303
2371
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2304
2372
  - request:
@@ -2321,43 +2389,45 @@ http_interactions:
2321
2389
  code: 202
2322
2390
  message: ''
2323
2391
  headers:
2324
- Server:
2325
- - openresty/1.11.2.1
2326
- Date:
2327
- - Thu, 02 Feb 2017 14:31:31 GMT
2392
+ Access-Control-Allow-Headers:
2393
+ - Origin, Content-Type, Accept, Authorization, Token
2394
+ Access-Control-Allow-Methods:
2395
+ - GET, POST, OPTIONS
2396
+ Access-Control-Allow-Origin:
2397
+ - "*"
2398
+ Access-Control-Max-Age:
2399
+ - '1728000'
2400
+ Cache-Control:
2401
+ - no-cache
2328
2402
  Content-Type:
2329
2403
  - application/json; charset=utf-8
2330
- Connection:
2331
- - keep-alive
2404
+ Date:
2405
+ - Sat, 11 Mar 2017 10:44:58 GMT
2406
+ Server:
2407
+ - openresty/1.11.2.2
2332
2408
  Status:
2333
2409
  - 202 Accepted
2334
- Cache-Control:
2335
- - no-cache
2336
- Access-Control-Allow-Origin:
2337
- - "*"
2338
2410
  Vary:
2339
2411
  - Accept-Encoding
2340
- Access-Control-Max-Age:
2341
- - '1728000'
2342
- X-Xss-Protection:
2343
- - 1; mode=block
2344
- X-Request-Id:
2345
- - d7dddbaf-db01-4589-8a3a-c2e1fafbab75
2346
- Access-Control-Allow-Headers:
2347
- - Origin, Content-Type, Accept, Authorization, Token
2348
- Access-Control-Allow-Methods:
2349
- - GET, POST, OPTIONS
2350
- X-Runtime:
2351
- - '0.030891'
2352
- X-Frame-Options:
2353
- - SAMEORIGIN
2354
2412
  X-Content-Type-Options:
2355
2413
  - nosniff
2414
+ X-Frame-Options:
2415
+ - SAMEORIGIN
2356
2416
  X-Powered-By:
2357
2417
  - Phusion Passenger 5.1.2
2418
+ X-Request-Id:
2419
+ - bfd22bda-a84a-4542-845e-af8a41b47a86
2420
+ X-Runtime:
2421
+ - '0.018444'
2422
+ X-Xss-Protection:
2423
+ - 1; mode=block
2424
+ Content-Length:
2425
+ - '238'
2426
+ Connection:
2427
+ - keep-alive
2358
2428
  body:
2359
2429
  encoding: UTF-8
2360
- string: '{"data":{"id":"df589091-5b89-4714-a427-27367b03aa1b","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1371137","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2430
+ string: '{"data":{"id":"df589091-5b89-4714-a427-27367b03aa1b","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1371137","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2361
2431
  http_version:
2362
2432
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2363
2433
  - request:
@@ -2380,43 +2450,45 @@ http_interactions:
2380
2450
  code: 202
2381
2451
  message: ''
2382
2452
  headers:
2383
- Server:
2384
- - openresty/1.11.2.1
2385
- Date:
2386
- - Thu, 02 Feb 2017 14:31:31 GMT
2453
+ Access-Control-Allow-Headers:
2454
+ - Origin, Content-Type, Accept, Authorization, Token
2455
+ Access-Control-Allow-Methods:
2456
+ - GET, POST, OPTIONS
2457
+ Access-Control-Allow-Origin:
2458
+ - "*"
2459
+ Access-Control-Max-Age:
2460
+ - '1728000'
2461
+ Cache-Control:
2462
+ - no-cache
2387
2463
  Content-Type:
2388
2464
  - application/json; charset=utf-8
2389
- Connection:
2390
- - keep-alive
2465
+ Date:
2466
+ - Sat, 11 Mar 2017 10:44:58 GMT
2467
+ Server:
2468
+ - openresty/1.11.2.2
2391
2469
  Status:
2392
2470
  - 202 Accepted
2393
- Cache-Control:
2394
- - no-cache
2395
- Access-Control-Allow-Origin:
2396
- - "*"
2397
2471
  Vary:
2398
2472
  - Accept-Encoding
2399
- Access-Control-Max-Age:
2400
- - '1728000'
2401
- X-Xss-Protection:
2402
- - 1; mode=block
2403
- X-Request-Id:
2404
- - d6f49a31-a4b2-4414-931e-c095a8a5b2a5
2405
- Access-Control-Allow-Headers:
2406
- - Origin, Content-Type, Accept, Authorization, Token
2407
- Access-Control-Allow-Methods:
2408
- - GET, POST, OPTIONS
2409
- X-Runtime:
2410
- - '0.031255'
2411
- X-Frame-Options:
2412
- - SAMEORIGIN
2413
2473
  X-Content-Type-Options:
2414
2474
  - nosniff
2475
+ X-Frame-Options:
2476
+ - SAMEORIGIN
2415
2477
  X-Powered-By:
2416
2478
  - Phusion Passenger 5.1.2
2479
+ X-Request-Id:
2480
+ - 04afd535-0534-4538-81b0-fad50cecc1e7
2481
+ X-Runtime:
2482
+ - '0.011549'
2483
+ X-Xss-Protection:
2484
+ - 1; mode=block
2485
+ Content-Length:
2486
+ - '238'
2487
+ Connection:
2488
+ - keep-alive
2417
2489
  body:
2418
2490
  encoding: UTF-8
2419
- string: '{"data":{"id":"9e7cae20-e811-486c-bdcc-dcb5bd1bcbe9","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1371138","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2491
+ string: '{"data":{"id":"9e7cae20-e811-486c-bdcc-dcb5bd1bcbe9","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1371138","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2420
2492
  http_version:
2421
2493
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2422
2494
  - request:
@@ -2439,43 +2511,45 @@ http_interactions:
2439
2511
  code: 202
2440
2512
  message: ''
2441
2513
  headers:
2442
- Server:
2443
- - openresty/1.11.2.1
2444
- Date:
2445
- - Thu, 02 Feb 2017 14:31:31 GMT
2514
+ Access-Control-Allow-Headers:
2515
+ - Origin, Content-Type, Accept, Authorization, Token
2516
+ Access-Control-Allow-Methods:
2517
+ - GET, POST, OPTIONS
2518
+ Access-Control-Allow-Origin:
2519
+ - "*"
2520
+ Access-Control-Max-Age:
2521
+ - '1728000'
2522
+ Cache-Control:
2523
+ - no-cache
2446
2524
  Content-Type:
2447
2525
  - application/json; charset=utf-8
2448
- Connection:
2449
- - keep-alive
2526
+ Date:
2527
+ - Sat, 11 Mar 2017 10:44:58 GMT
2528
+ Server:
2529
+ - openresty/1.11.2.2
2450
2530
  Status:
2451
2531
  - 202 Accepted
2452
- Cache-Control:
2453
- - no-cache
2454
- Access-Control-Allow-Origin:
2455
- - "*"
2456
2532
  Vary:
2457
2533
  - Accept-Encoding
2458
- Access-Control-Max-Age:
2459
- - '1728000'
2460
- X-Xss-Protection:
2461
- - 1; mode=block
2462
- X-Request-Id:
2463
- - 903a5fb4-12ef-43c0-abd4-a060c59d10aa
2464
- Access-Control-Allow-Headers:
2465
- - Origin, Content-Type, Accept, Authorization, Token
2466
- Access-Control-Allow-Methods:
2467
- - GET, POST, OPTIONS
2468
- X-Runtime:
2469
- - '0.031260'
2470
- X-Frame-Options:
2471
- - SAMEORIGIN
2472
2534
  X-Content-Type-Options:
2473
2535
  - nosniff
2536
+ X-Frame-Options:
2537
+ - SAMEORIGIN
2474
2538
  X-Powered-By:
2475
2539
  - Phusion Passenger 5.1.2
2540
+ X-Request-Id:
2541
+ - 08b0236a-5636-407f-b29b-0c01018b0202
2542
+ X-Runtime:
2543
+ - '0.010107'
2544
+ X-Xss-Protection:
2545
+ - 1; mode=block
2546
+ Content-Length:
2547
+ - '238'
2548
+ Connection:
2549
+ - keep-alive
2476
2550
  body:
2477
2551
  encoding: UTF-8
2478
- string: '{"data":{"id":"87265bf1-b0fb-4e36-8621-62914d9f176f","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1371139","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2552
+ string: '{"data":{"id":"87265bf1-b0fb-4e36-8621-62914d9f176f","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1371139","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2479
2553
  http_version:
2480
2554
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2481
2555
  - request:
@@ -2498,43 +2572,45 @@ http_interactions:
2498
2572
  code: 202
2499
2573
  message: ''
2500
2574
  headers:
2501
- Server:
2502
- - openresty/1.11.2.1
2503
- Date:
2504
- - Thu, 02 Feb 2017 14:31:32 GMT
2575
+ Access-Control-Allow-Headers:
2576
+ - Origin, Content-Type, Accept, Authorization, Token
2577
+ Access-Control-Allow-Methods:
2578
+ - GET, POST, OPTIONS
2579
+ Access-Control-Allow-Origin:
2580
+ - "*"
2581
+ Access-Control-Max-Age:
2582
+ - '1728000'
2583
+ Cache-Control:
2584
+ - no-cache
2505
2585
  Content-Type:
2506
2586
  - application/json; charset=utf-8
2507
- Connection:
2508
- - keep-alive
2587
+ Date:
2588
+ - Sat, 11 Mar 2017 10:44:59 GMT
2589
+ Server:
2590
+ - openresty/1.11.2.2
2509
2591
  Status:
2510
2592
  - 202 Accepted
2511
- Cache-Control:
2512
- - no-cache
2513
- Access-Control-Allow-Origin:
2514
- - "*"
2515
2593
  Vary:
2516
2594
  - Accept-Encoding
2517
- Access-Control-Max-Age:
2518
- - '1728000'
2519
- X-Xss-Protection:
2520
- - 1; mode=block
2521
- X-Request-Id:
2522
- - 303c3d4d-ef2f-4b38-9599-9eb872ff02bf
2523
- Access-Control-Allow-Headers:
2524
- - Origin, Content-Type, Accept, Authorization, Token
2525
- Access-Control-Allow-Methods:
2526
- - GET, POST, OPTIONS
2527
- X-Runtime:
2528
- - '0.031410'
2529
- X-Frame-Options:
2530
- - SAMEORIGIN
2531
2595
  X-Content-Type-Options:
2532
2596
  - nosniff
2597
+ X-Frame-Options:
2598
+ - SAMEORIGIN
2533
2599
  X-Powered-By:
2534
2600
  - Phusion Passenger 5.1.2
2601
+ X-Request-Id:
2602
+ - 21ad5480-5ae4-4989-a025-04d5d01ba24b
2603
+ X-Runtime:
2604
+ - '0.009825'
2605
+ X-Xss-Protection:
2606
+ - 1; mode=block
2607
+ Content-Length:
2608
+ - '237'
2609
+ Connection:
2610
+ - keep-alive
2535
2611
  body:
2536
2612
  encoding: UTF-8
2537
- string: '{"data":{"id":"9fd77892-3224-4242-b1ea-33b9663a4555","type":"claims","attributes":{"orcid":"0000-0001-9964-6984","doi":"10.6084/M9.FIGSHARE.707350","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2613
+ string: '{"data":{"id":"9fd77892-3224-4242-b1ea-33b9663a4555","type":"claims","attributes":{"orcid":"0000-0001-9964-6984","doi":"10.6084/M9.FIGSHARE.707350","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2538
2614
  http_version:
2539
2615
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2540
2616
  - request:
@@ -2557,43 +2633,45 @@ http_interactions:
2557
2633
  code: 202
2558
2634
  message: ''
2559
2635
  headers:
2560
- Server:
2561
- - openresty/1.11.2.1
2562
- Date:
2563
- - Thu, 02 Feb 2017 14:31:32 GMT
2636
+ Access-Control-Allow-Headers:
2637
+ - Origin, Content-Type, Accept, Authorization, Token
2638
+ Access-Control-Allow-Methods:
2639
+ - GET, POST, OPTIONS
2640
+ Access-Control-Allow-Origin:
2641
+ - "*"
2642
+ Access-Control-Max-Age:
2643
+ - '1728000'
2644
+ Cache-Control:
2645
+ - no-cache
2564
2646
  Content-Type:
2565
2647
  - application/json; charset=utf-8
2566
- Connection:
2567
- - keep-alive
2648
+ Date:
2649
+ - Sat, 11 Mar 2017 10:44:59 GMT
2650
+ Server:
2651
+ - openresty/1.11.2.2
2568
2652
  Status:
2569
2653
  - 202 Accepted
2570
- Cache-Control:
2571
- - no-cache
2572
- Access-Control-Allow-Origin:
2573
- - "*"
2574
2654
  Vary:
2575
2655
  - Accept-Encoding
2576
- Access-Control-Max-Age:
2577
- - '1728000'
2578
- X-Xss-Protection:
2579
- - 1; mode=block
2580
- X-Request-Id:
2581
- - 70baa22e-73c7-457d-afea-272dd3e2a879
2582
- Access-Control-Allow-Headers:
2583
- - Origin, Content-Type, Accept, Authorization, Token
2584
- Access-Control-Allow-Methods:
2585
- - GET, POST, OPTIONS
2586
- X-Runtime:
2587
- - '0.031252'
2588
- X-Frame-Options:
2589
- - SAMEORIGIN
2590
2656
  X-Content-Type-Options:
2591
2657
  - nosniff
2658
+ X-Frame-Options:
2659
+ - SAMEORIGIN
2592
2660
  X-Powered-By:
2593
2661
  - Phusion Passenger 5.1.2
2662
+ X-Request-Id:
2663
+ - f3a95c4a-754f-4e03-a1dc-a91c17e658e7
2664
+ X-Runtime:
2665
+ - '0.010614'
2666
+ X-Xss-Protection:
2667
+ - 1; mode=block
2668
+ Content-Length:
2669
+ - '237'
2670
+ Connection:
2671
+ - keep-alive
2594
2672
  body:
2595
2673
  encoding: UTF-8
2596
- string: '{"data":{"id":"37bbefc9-682a-4acb-8da2-7d1b7e4d984e","type":"claims","attributes":{"orcid":"0000-0001-9964-6984","doi":"10.6084/M9.FIGSHARE.707351","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2674
+ string: '{"data":{"id":"37bbefc9-682a-4acb-8da2-7d1b7e4d984e","type":"claims","attributes":{"orcid":"0000-0001-9964-6984","doi":"10.6084/M9.FIGSHARE.707351","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2597
2675
  http_version:
2598
2676
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2599
2677
  - request:
@@ -2616,43 +2694,45 @@ http_interactions:
2616
2694
  code: 202
2617
2695
  message: ''
2618
2696
  headers:
2619
- Server:
2620
- - openresty/1.11.2.1
2621
- Date:
2622
- - Thu, 02 Feb 2017 14:31:32 GMT
2697
+ Access-Control-Allow-Headers:
2698
+ - Origin, Content-Type, Accept, Authorization, Token
2699
+ Access-Control-Allow-Methods:
2700
+ - GET, POST, OPTIONS
2701
+ Access-Control-Allow-Origin:
2702
+ - "*"
2703
+ Access-Control-Max-Age:
2704
+ - '1728000'
2705
+ Cache-Control:
2706
+ - no-cache
2623
2707
  Content-Type:
2624
2708
  - application/json; charset=utf-8
2625
- Connection:
2626
- - keep-alive
2709
+ Date:
2710
+ - Sat, 11 Mar 2017 10:44:59 GMT
2711
+ Server:
2712
+ - openresty/1.11.2.2
2627
2713
  Status:
2628
2714
  - 202 Accepted
2629
- Cache-Control:
2630
- - no-cache
2631
- Access-Control-Allow-Origin:
2632
- - "*"
2633
2715
  Vary:
2634
2716
  - Accept-Encoding
2635
- Access-Control-Max-Age:
2636
- - '1728000'
2637
- X-Xss-Protection:
2638
- - 1; mode=block
2639
- X-Request-Id:
2640
- - f7ab54e3-fcf7-4cbe-9ec9-b03e031b1c5a
2641
- Access-Control-Allow-Headers:
2642
- - Origin, Content-Type, Accept, Authorization, Token
2643
- Access-Control-Allow-Methods:
2644
- - GET, POST, OPTIONS
2645
- X-Runtime:
2646
- - '0.031054'
2647
- X-Frame-Options:
2648
- - SAMEORIGIN
2649
2717
  X-Content-Type-Options:
2650
2718
  - nosniff
2719
+ X-Frame-Options:
2720
+ - SAMEORIGIN
2651
2721
  X-Powered-By:
2652
2722
  - Phusion Passenger 5.1.2
2723
+ X-Request-Id:
2724
+ - 6aa5ac02-0ae6-4867-b1f4-9b022eebabc7
2725
+ X-Runtime:
2726
+ - '0.010091'
2727
+ X-Xss-Protection:
2728
+ - 1; mode=block
2729
+ Content-Length:
2730
+ - '237'
2731
+ Connection:
2732
+ - keep-alive
2653
2733
  body:
2654
2734
  encoding: UTF-8
2655
- string: '{"data":{"id":"5e4ea0c7-b970-45d1-ba75-4bff83dac219","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.778701","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2735
+ string: '{"data":{"id":"5e4ea0c7-b970-45d1-ba75-4bff83dac219","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.778701","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2656
2736
  http_version:
2657
2737
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2658
2738
  - request:
@@ -2675,43 +2755,45 @@ http_interactions:
2675
2755
  code: 202
2676
2756
  message: ''
2677
2757
  headers:
2678
- Server:
2679
- - openresty/1.11.2.1
2680
- Date:
2681
- - Thu, 02 Feb 2017 14:31:33 GMT
2758
+ Access-Control-Allow-Headers:
2759
+ - Origin, Content-Type, Accept, Authorization, Token
2760
+ Access-Control-Allow-Methods:
2761
+ - GET, POST, OPTIONS
2762
+ Access-Control-Allow-Origin:
2763
+ - "*"
2764
+ Access-Control-Max-Age:
2765
+ - '1728000'
2766
+ Cache-Control:
2767
+ - no-cache
2682
2768
  Content-Type:
2683
2769
  - application/json; charset=utf-8
2684
- Connection:
2685
- - keep-alive
2770
+ Date:
2771
+ - Sat, 11 Mar 2017 10:44:59 GMT
2772
+ Server:
2773
+ - openresty/1.11.2.2
2686
2774
  Status:
2687
2775
  - 202 Accepted
2688
- Cache-Control:
2689
- - no-cache
2690
- Access-Control-Allow-Origin:
2691
- - "*"
2692
2776
  Vary:
2693
2777
  - Accept-Encoding
2694
- Access-Control-Max-Age:
2695
- - '1728000'
2696
- X-Xss-Protection:
2697
- - 1; mode=block
2698
- X-Request-Id:
2699
- - d9ef8d8c-8540-4357-908d-48325572580b
2700
- Access-Control-Allow-Headers:
2701
- - Origin, Content-Type, Accept, Authorization, Token
2702
- Access-Control-Allow-Methods:
2703
- - GET, POST, OPTIONS
2704
- X-Runtime:
2705
- - '0.031094'
2706
- X-Frame-Options:
2707
- - SAMEORIGIN
2708
2778
  X-Content-Type-Options:
2709
2779
  - nosniff
2780
+ X-Frame-Options:
2781
+ - SAMEORIGIN
2710
2782
  X-Powered-By:
2711
2783
  - Phusion Passenger 5.1.2
2784
+ X-Request-Id:
2785
+ - acffdf18-ae9b-4d78-b354-fab7e706f01a
2786
+ X-Runtime:
2787
+ - '0.009644'
2788
+ X-Xss-Protection:
2789
+ - 1; mode=block
2790
+ Content-Length:
2791
+ - '237'
2792
+ Connection:
2793
+ - keep-alive
2712
2794
  body:
2713
2795
  encoding: UTF-8
2714
- string: '{"data":{"id":"48d051e8-48b0-4c46-9747-3ff21135bba3","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.779705","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2796
+ string: '{"data":{"id":"48d051e8-48b0-4c46-9747-3ff21135bba3","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.779705","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2715
2797
  http_version:
2716
2798
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2717
2799
  - request:
@@ -2734,43 +2816,45 @@ http_interactions:
2734
2816
  code: 202
2735
2817
  message: ''
2736
2818
  headers:
2737
- Server:
2738
- - openresty/1.11.2.1
2739
- Date:
2740
- - Thu, 02 Feb 2017 14:31:33 GMT
2819
+ Access-Control-Allow-Headers:
2820
+ - Origin, Content-Type, Accept, Authorization, Token
2821
+ Access-Control-Allow-Methods:
2822
+ - GET, POST, OPTIONS
2823
+ Access-Control-Allow-Origin:
2824
+ - "*"
2825
+ Access-Control-Max-Age:
2826
+ - '1728000'
2827
+ Cache-Control:
2828
+ - no-cache
2741
2829
  Content-Type:
2742
2830
  - application/json; charset=utf-8
2743
- Connection:
2744
- - keep-alive
2831
+ Date:
2832
+ - Sat, 11 Mar 2017 10:44:59 GMT
2833
+ Server:
2834
+ - openresty/1.11.2.2
2745
2835
  Status:
2746
2836
  - 202 Accepted
2747
- Cache-Control:
2748
- - no-cache
2749
- Access-Control-Allow-Origin:
2750
- - "*"
2751
2837
  Vary:
2752
2838
  - Accept-Encoding
2753
- Access-Control-Max-Age:
2754
- - '1728000'
2755
- X-Xss-Protection:
2756
- - 1; mode=block
2757
- X-Request-Id:
2758
- - cbde3b43-7847-4847-a796-11069076eb37
2759
- Access-Control-Allow-Headers:
2760
- - Origin, Content-Type, Accept, Authorization, Token
2761
- Access-Control-Allow-Methods:
2762
- - GET, POST, OPTIONS
2763
- X-Runtime:
2764
- - '0.031188'
2765
- X-Frame-Options:
2766
- - SAMEORIGIN
2767
2839
  X-Content-Type-Options:
2768
2840
  - nosniff
2841
+ X-Frame-Options:
2842
+ - SAMEORIGIN
2769
2843
  X-Powered-By:
2770
2844
  - Phusion Passenger 5.1.2
2845
+ X-Request-Id:
2846
+ - 75ce0b9d-b98f-475e-8c96-09be32b497dc
2847
+ X-Runtime:
2848
+ - '0.010043'
2849
+ X-Xss-Protection:
2850
+ - 1; mode=block
2851
+ Content-Length:
2852
+ - '237'
2853
+ Connection:
2854
+ - keep-alive
2771
2855
  body:
2772
2856
  encoding: UTF-8
2773
- string: '{"data":{"id":"07c2770d-159b-470e-ba94-7e81c082452c","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.760716","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2857
+ string: '{"data":{"id":"07c2770d-159b-470e-ba94-7e81c082452c","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.760716","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2774
2858
  http_version:
2775
2859
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2776
2860
  - request:
@@ -2793,43 +2877,45 @@ http_interactions:
2793
2877
  code: 202
2794
2878
  message: ''
2795
2879
  headers:
2796
- Server:
2797
- - openresty/1.11.2.1
2798
- Date:
2799
- - Thu, 02 Feb 2017 14:31:33 GMT
2880
+ Access-Control-Allow-Headers:
2881
+ - Origin, Content-Type, Accept, Authorization, Token
2882
+ Access-Control-Allow-Methods:
2883
+ - GET, POST, OPTIONS
2884
+ Access-Control-Allow-Origin:
2885
+ - "*"
2886
+ Access-Control-Max-Age:
2887
+ - '1728000'
2888
+ Cache-Control:
2889
+ - no-cache
2800
2890
  Content-Type:
2801
2891
  - application/json; charset=utf-8
2802
- Connection:
2803
- - keep-alive
2892
+ Date:
2893
+ - Sat, 11 Mar 2017 10:45:00 GMT
2894
+ Server:
2895
+ - openresty/1.11.2.2
2804
2896
  Status:
2805
2897
  - 202 Accepted
2806
- Cache-Control:
2807
- - no-cache
2808
- Access-Control-Allow-Origin:
2809
- - "*"
2810
2898
  Vary:
2811
2899
  - Accept-Encoding
2812
- Access-Control-Max-Age:
2813
- - '1728000'
2814
- X-Xss-Protection:
2815
- - 1; mode=block
2816
- X-Request-Id:
2817
- - 28c2ee5e-028e-4475-b3ad-fd998f5c3826
2818
- Access-Control-Allow-Headers:
2819
- - Origin, Content-Type, Accept, Authorization, Token
2820
- Access-Control-Allow-Methods:
2821
- - GET, POST, OPTIONS
2822
- X-Runtime:
2823
- - '0.031146'
2824
- X-Frame-Options:
2825
- - SAMEORIGIN
2826
2900
  X-Content-Type-Options:
2827
2901
  - nosniff
2902
+ X-Frame-Options:
2903
+ - SAMEORIGIN
2828
2904
  X-Powered-By:
2829
2905
  - Phusion Passenger 5.1.2
2906
+ X-Request-Id:
2907
+ - dff08247-0966-4d51-a1f0-cdcc4274a7e0
2908
+ X-Runtime:
2909
+ - '0.012788'
2910
+ X-Xss-Protection:
2911
+ - 1; mode=block
2912
+ Content-Length:
2913
+ - '237'
2914
+ Connection:
2915
+ - keep-alive
2830
2916
  body:
2831
2917
  encoding: UTF-8
2832
- string: '{"data":{"id":"b5965e58-8bbe-4387-9d1e-36c9d6c9b5ac","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.769272","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2918
+ string: '{"data":{"id":"b5965e58-8bbe-4387-9d1e-36c9d6c9b5ac","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.769272","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2833
2919
  http_version:
2834
2920
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2835
2921
  - request:
@@ -2852,43 +2938,45 @@ http_interactions:
2852
2938
  code: 202
2853
2939
  message: ''
2854
2940
  headers:
2855
- Server:
2856
- - openresty/1.11.2.1
2857
- Date:
2858
- - Thu, 02 Feb 2017 14:31:33 GMT
2941
+ Access-Control-Allow-Headers:
2942
+ - Origin, Content-Type, Accept, Authorization, Token
2943
+ Access-Control-Allow-Methods:
2944
+ - GET, POST, OPTIONS
2945
+ Access-Control-Allow-Origin:
2946
+ - "*"
2947
+ Access-Control-Max-Age:
2948
+ - '1728000'
2949
+ Cache-Control:
2950
+ - no-cache
2859
2951
  Content-Type:
2860
2952
  - application/json; charset=utf-8
2861
- Connection:
2862
- - keep-alive
2953
+ Date:
2954
+ - Sat, 11 Mar 2017 10:45:00 GMT
2955
+ Server:
2956
+ - openresty/1.11.2.2
2863
2957
  Status:
2864
2958
  - 202 Accepted
2865
- Cache-Control:
2866
- - no-cache
2867
- Access-Control-Allow-Origin:
2868
- - "*"
2869
2959
  Vary:
2870
2960
  - Accept-Encoding
2871
- Access-Control-Max-Age:
2872
- - '1728000'
2873
- X-Xss-Protection:
2874
- - 1; mode=block
2875
- X-Request-Id:
2876
- - ec04518d-95a5-49f4-b58f-798c214b3988
2877
- Access-Control-Allow-Headers:
2878
- - Origin, Content-Type, Accept, Authorization, Token
2879
- Access-Control-Allow-Methods:
2880
- - GET, POST, OPTIONS
2881
- X-Runtime:
2882
- - '0.030913'
2883
- X-Frame-Options:
2884
- - SAMEORIGIN
2885
2961
  X-Content-Type-Options:
2886
2962
  - nosniff
2963
+ X-Frame-Options:
2964
+ - SAMEORIGIN
2887
2965
  X-Powered-By:
2888
2966
  - Phusion Passenger 5.1.2
2967
+ X-Request-Id:
2968
+ - b6351e47-55a8-4850-bd80-584a3f3b9547
2969
+ X-Runtime:
2970
+ - '0.011038'
2971
+ X-Xss-Protection:
2972
+ - 1; mode=block
2973
+ Content-Length:
2974
+ - '237'
2975
+ Connection:
2976
+ - keep-alive
2889
2977
  body:
2890
2978
  encoding: UTF-8
2891
- string: '{"data":{"id":"87ed8708-35e6-4c0f-9183-1dd416071d7f","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.769271","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
2979
+ string: '{"data":{"id":"87ed8708-35e6-4c0f-9183-1dd416071d7f","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.769271","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2892
2980
  http_version:
2893
2981
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2894
2982
  - request:
@@ -2911,43 +2999,45 @@ http_interactions:
2911
2999
  code: 202
2912
3000
  message: ''
2913
3001
  headers:
2914
- Server:
2915
- - openresty/1.11.2.1
2916
- Date:
2917
- - Thu, 02 Feb 2017 14:31:34 GMT
2918
- Content-Type:
2919
- - application/json; charset=utf-8
2920
- Connection:
2921
- - keep-alive
2922
- Status:
2923
- - 202 Accepted
2924
- Cache-Control:
2925
- - no-cache
2926
- Access-Control-Allow-Origin:
2927
- - "*"
2928
- Vary:
2929
- - Accept-Encoding
2930
- Access-Control-Max-Age:
2931
- - '1728000'
2932
- X-Xss-Protection:
2933
- - 1; mode=block
2934
- X-Request-Id:
2935
- - 54729c70-2be0-4bca-8db8-e534b542506e
2936
3002
  Access-Control-Allow-Headers:
2937
3003
  - Origin, Content-Type, Accept, Authorization, Token
2938
3004
  Access-Control-Allow-Methods:
2939
3005
  - GET, POST, OPTIONS
2940
- X-Runtime:
2941
- - '0.031647'
2942
- X-Frame-Options:
2943
- - SAMEORIGIN
3006
+ Access-Control-Allow-Origin:
3007
+ - "*"
3008
+ Access-Control-Max-Age:
3009
+ - '1728000'
3010
+ Cache-Control:
3011
+ - no-cache
3012
+ Content-Type:
3013
+ - application/json; charset=utf-8
3014
+ Date:
3015
+ - Sat, 11 Mar 2017 10:45:00 GMT
3016
+ Server:
3017
+ - openresty/1.11.2.2
3018
+ Status:
3019
+ - 202 Accepted
3020
+ Vary:
3021
+ - Accept-Encoding
2944
3022
  X-Content-Type-Options:
2945
3023
  - nosniff
3024
+ X-Frame-Options:
3025
+ - SAMEORIGIN
2946
3026
  X-Powered-By:
2947
3027
  - Phusion Passenger 5.1.2
3028
+ X-Request-Id:
3029
+ - e071a853-4058-43fd-86da-f59136bbd89b
3030
+ X-Runtime:
3031
+ - '0.011523'
3032
+ X-Xss-Protection:
3033
+ - 1; mode=block
3034
+ Content-Length:
3035
+ - '237'
3036
+ Connection:
3037
+ - keep-alive
2948
3038
  body:
2949
3039
  encoding: UTF-8
2950
- string: '{"data":{"id":"729ef8bc-05a2-4daa-9774-3f9aa100478c","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.769270","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
3040
+ string: '{"data":{"id":"729ef8bc-05a2-4daa-9774-3f9aa100478c","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.769270","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
2951
3041
  http_version:
2952
3042
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
2953
3043
  - request:
@@ -2970,43 +3060,45 @@ http_interactions:
2970
3060
  code: 202
2971
3061
  message: ''
2972
3062
  headers:
2973
- Server:
2974
- - openresty/1.11.2.1
2975
- Date:
2976
- - Thu, 02 Feb 2017 14:31:34 GMT
3063
+ Access-Control-Allow-Headers:
3064
+ - Origin, Content-Type, Accept, Authorization, Token
3065
+ Access-Control-Allow-Methods:
3066
+ - GET, POST, OPTIONS
3067
+ Access-Control-Allow-Origin:
3068
+ - "*"
3069
+ Access-Control-Max-Age:
3070
+ - '1728000'
3071
+ Cache-Control:
3072
+ - no-cache
2977
3073
  Content-Type:
2978
3074
  - application/json; charset=utf-8
2979
- Connection:
2980
- - keep-alive
3075
+ Date:
3076
+ - Sat, 11 Mar 2017 10:45:00 GMT
3077
+ Server:
3078
+ - openresty/1.11.2.2
2981
3079
  Status:
2982
3080
  - 202 Accepted
2983
- Cache-Control:
2984
- - no-cache
2985
- Access-Control-Allow-Origin:
2986
- - "*"
2987
3081
  Vary:
2988
3082
  - Accept-Encoding
2989
- Access-Control-Max-Age:
2990
- - '1728000'
2991
- X-Xss-Protection:
2992
- - 1; mode=block
2993
- X-Request-Id:
2994
- - 8e8850f9-a858-4f5f-9300-cd0f9fe501c2
2995
- Access-Control-Allow-Headers:
2996
- - Origin, Content-Type, Accept, Authorization, Token
2997
- Access-Control-Allow-Methods:
2998
- - GET, POST, OPTIONS
2999
- X-Runtime:
3000
- - '0.030947'
3001
- X-Frame-Options:
3002
- - SAMEORIGIN
3003
3083
  X-Content-Type-Options:
3004
3084
  - nosniff
3085
+ X-Frame-Options:
3086
+ - SAMEORIGIN
3005
3087
  X-Powered-By:
3006
3088
  - Phusion Passenger 5.1.2
3089
+ X-Request-Id:
3090
+ - 9cdc7220-3be3-4f5c-9427-028513860d32
3091
+ X-Runtime:
3092
+ - '0.026185'
3093
+ X-Xss-Protection:
3094
+ - 1; mode=block
3095
+ Content-Length:
3096
+ - '238'
3097
+ Connection:
3098
+ - keep-alive
3007
3099
  body:
3008
3100
  encoding: UTF-8
3009
- string: '{"data":{"id":"27913db7-e2b1-47ea-a057-f15647402e26","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1041547","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
3101
+ string: '{"data":{"id":"27913db7-e2b1-47ea-a057-f15647402e26","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1041547","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
3010
3102
  http_version:
3011
3103
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
3012
3104
  - request:
@@ -3029,43 +3121,45 @@ http_interactions:
3029
3121
  code: 202
3030
3122
  message: ''
3031
3123
  headers:
3032
- Server:
3033
- - openresty/1.11.2.1
3034
- Date:
3035
- - Thu, 02 Feb 2017 14:31:34 GMT
3124
+ Access-Control-Allow-Headers:
3125
+ - Origin, Content-Type, Accept, Authorization, Token
3126
+ Access-Control-Allow-Methods:
3127
+ - GET, POST, OPTIONS
3128
+ Access-Control-Allow-Origin:
3129
+ - "*"
3130
+ Access-Control-Max-Age:
3131
+ - '1728000'
3132
+ Cache-Control:
3133
+ - no-cache
3036
3134
  Content-Type:
3037
3135
  - application/json; charset=utf-8
3038
- Connection:
3039
- - keep-alive
3136
+ Date:
3137
+ - Sat, 11 Mar 2017 10:45:01 GMT
3138
+ Server:
3139
+ - openresty/1.11.2.2
3040
3140
  Status:
3041
3141
  - 202 Accepted
3042
- Cache-Control:
3043
- - no-cache
3044
- Access-Control-Allow-Origin:
3045
- - "*"
3046
3142
  Vary:
3047
3143
  - Accept-Encoding
3048
- Access-Control-Max-Age:
3049
- - '1728000'
3050
- X-Xss-Protection:
3051
- - 1; mode=block
3052
- X-Request-Id:
3053
- - 35ce5794-44d2-40a4-85e4-6bd1a9c22fa3
3054
- Access-Control-Allow-Headers:
3055
- - Origin, Content-Type, Accept, Authorization, Token
3056
- Access-Control-Allow-Methods:
3057
- - GET, POST, OPTIONS
3058
- X-Runtime:
3059
- - '0.031031'
3060
- X-Frame-Options:
3061
- - SAMEORIGIN
3062
3144
  X-Content-Type-Options:
3063
3145
  - nosniff
3146
+ X-Frame-Options:
3147
+ - SAMEORIGIN
3064
3148
  X-Powered-By:
3065
3149
  - Phusion Passenger 5.1.2
3150
+ X-Request-Id:
3151
+ - d25a6e6e-0d7b-4f83-bb6c-95d4a8cfd0ea
3152
+ X-Runtime:
3153
+ - '0.013258'
3154
+ X-Xss-Protection:
3155
+ - 1; mode=block
3156
+ Content-Length:
3157
+ - '238'
3158
+ Connection:
3159
+ - keep-alive
3066
3160
  body:
3067
3161
  encoding: UTF-8
3068
- string: '{"data":{"id":"e2fa98bb-fb5b-4fcb-a64b-8ba03cb172e6","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1014351","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
3162
+ string: '{"data":{"id":"e2fa98bb-fb5b-4fcb-a64b-8ba03cb172e6","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1014351","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
3069
3163
  http_version:
3070
3164
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
3071
3165
  - request:
@@ -3088,43 +3182,45 @@ http_interactions:
3088
3182
  code: 202
3089
3183
  message: ''
3090
3184
  headers:
3091
- Server:
3092
- - openresty/1.11.2.1
3093
- Date:
3094
- - Thu, 02 Feb 2017 14:31:35 GMT
3185
+ Access-Control-Allow-Headers:
3186
+ - Origin, Content-Type, Accept, Authorization, Token
3187
+ Access-Control-Allow-Methods:
3188
+ - GET, POST, OPTIONS
3189
+ Access-Control-Allow-Origin:
3190
+ - "*"
3191
+ Access-Control-Max-Age:
3192
+ - '1728000'
3193
+ Cache-Control:
3194
+ - no-cache
3095
3195
  Content-Type:
3096
3196
  - application/json; charset=utf-8
3097
- Connection:
3098
- - keep-alive
3197
+ Date:
3198
+ - Sat, 11 Mar 2017 10:45:01 GMT
3199
+ Server:
3200
+ - openresty/1.11.2.2
3099
3201
  Status:
3100
3202
  - 202 Accepted
3101
- Cache-Control:
3102
- - no-cache
3103
- Access-Control-Allow-Origin:
3104
- - "*"
3105
3203
  Vary:
3106
3204
  - Accept-Encoding
3107
- Access-Control-Max-Age:
3108
- - '1728000'
3109
- X-Xss-Protection:
3110
- - 1; mode=block
3111
- X-Request-Id:
3112
- - 26548df7-d407-4902-9056-1802bbd559fa
3113
- Access-Control-Allow-Headers:
3114
- - Origin, Content-Type, Accept, Authorization, Token
3115
- Access-Control-Allow-Methods:
3116
- - GET, POST, OPTIONS
3117
- X-Runtime:
3118
- - '0.031270'
3119
- X-Frame-Options:
3120
- - SAMEORIGIN
3121
3205
  X-Content-Type-Options:
3122
3206
  - nosniff
3207
+ X-Frame-Options:
3208
+ - SAMEORIGIN
3123
3209
  X-Powered-By:
3124
3210
  - Phusion Passenger 5.1.2
3211
+ X-Request-Id:
3212
+ - 2dde2465-b492-4790-acfd-f1e6b9dacf5a
3213
+ X-Runtime:
3214
+ - '0.012098'
3215
+ X-Xss-Protection:
3216
+ - 1; mode=block
3217
+ Content-Length:
3218
+ - '238'
3219
+ Connection:
3220
+ - keep-alive
3125
3221
  body:
3126
3222
  encoding: UTF-8
3127
- string: '{"data":{"id":"44d44c6f-a78e-45b5-8031-3d63f3b11177","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1014348","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
3223
+ string: '{"data":{"id":"44d44c6f-a78e-45b5-8031-3d63f3b11177","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1014348","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
3128
3224
  http_version:
3129
3225
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
3130
3226
  - request:
@@ -3147,43 +3243,45 @@ http_interactions:
3147
3243
  code: 202
3148
3244
  message: ''
3149
3245
  headers:
3150
- Server:
3151
- - openresty/1.11.2.1
3152
- Date:
3153
- - Thu, 02 Feb 2017 14:31:35 GMT
3246
+ Access-Control-Allow-Headers:
3247
+ - Origin, Content-Type, Accept, Authorization, Token
3248
+ Access-Control-Allow-Methods:
3249
+ - GET, POST, OPTIONS
3250
+ Access-Control-Allow-Origin:
3251
+ - "*"
3252
+ Access-Control-Max-Age:
3253
+ - '1728000'
3254
+ Cache-Control:
3255
+ - no-cache
3154
3256
  Content-Type:
3155
3257
  - application/json; charset=utf-8
3156
- Connection:
3157
- - keep-alive
3258
+ Date:
3259
+ - Sat, 11 Mar 2017 10:45:01 GMT
3260
+ Server:
3261
+ - openresty/1.11.2.2
3158
3262
  Status:
3159
3263
  - 202 Accepted
3160
- Cache-Control:
3161
- - no-cache
3162
- Access-Control-Allow-Origin:
3163
- - "*"
3164
3264
  Vary:
3165
3265
  - Accept-Encoding
3166
- Access-Control-Max-Age:
3167
- - '1728000'
3168
- X-Xss-Protection:
3169
- - 1; mode=block
3170
- X-Request-Id:
3171
- - 0842660e-373e-4da3-949b-19b3e9e61725
3172
- Access-Control-Allow-Headers:
3173
- - Origin, Content-Type, Accept, Authorization, Token
3174
- Access-Control-Allow-Methods:
3175
- - GET, POST, OPTIONS
3176
- X-Runtime:
3177
- - '0.031431'
3178
- X-Frame-Options:
3179
- - SAMEORIGIN
3180
3266
  X-Content-Type-Options:
3181
3267
  - nosniff
3268
+ X-Frame-Options:
3269
+ - SAMEORIGIN
3182
3270
  X-Powered-By:
3183
3271
  - Phusion Passenger 5.1.2
3272
+ X-Request-Id:
3273
+ - 16cfbded-f6f9-40f3-bc65-7cab23dbef93
3274
+ X-Runtime:
3275
+ - '0.010734'
3276
+ X-Xss-Protection:
3277
+ - 1; mode=block
3278
+ Content-Length:
3279
+ - '238'
3280
+ Connection:
3281
+ - keep-alive
3184
3282
  body:
3185
3283
  encoding: UTF-8
3186
- string: '{"data":{"id":"823a69de-f1d7-4fd1-8b7b-42cea5ad3b60","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1014352","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
3284
+ string: '{"data":{"id":"823a69de-f1d7-4fd1-8b7b-42cea5ad3b60","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1014352","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
3187
3285
  http_version:
3188
3286
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
3189
3287
  - request:
@@ -3206,43 +3304,45 @@ http_interactions:
3206
3304
  code: 202
3207
3305
  message: ''
3208
3306
  headers:
3209
- Server:
3210
- - openresty/1.11.2.1
3211
- Date:
3212
- - Thu, 02 Feb 2017 14:31:35 GMT
3307
+ Access-Control-Allow-Headers:
3308
+ - Origin, Content-Type, Accept, Authorization, Token
3309
+ Access-Control-Allow-Methods:
3310
+ - GET, POST, OPTIONS
3311
+ Access-Control-Allow-Origin:
3312
+ - "*"
3313
+ Access-Control-Max-Age:
3314
+ - '1728000'
3315
+ Cache-Control:
3316
+ - no-cache
3213
3317
  Content-Type:
3214
3318
  - application/json; charset=utf-8
3215
- Connection:
3216
- - keep-alive
3319
+ Date:
3320
+ - Sat, 11 Mar 2017 10:45:01 GMT
3321
+ Server:
3322
+ - openresty/1.11.2.2
3217
3323
  Status:
3218
3324
  - 202 Accepted
3219
- Cache-Control:
3220
- - no-cache
3221
- Access-Control-Allow-Origin:
3222
- - "*"
3223
3325
  Vary:
3224
3326
  - Accept-Encoding
3225
- Access-Control-Max-Age:
3226
- - '1728000'
3227
- X-Xss-Protection:
3228
- - 1; mode=block
3229
- X-Request-Id:
3230
- - 9f4d2973-94fb-4b5b-847d-a6624ea2b376
3231
- Access-Control-Allow-Headers:
3232
- - Origin, Content-Type, Accept, Authorization, Token
3233
- Access-Control-Allow-Methods:
3234
- - GET, POST, OPTIONS
3235
- X-Runtime:
3236
- - '0.031378'
3237
- X-Frame-Options:
3238
- - SAMEORIGIN
3239
3327
  X-Content-Type-Options:
3240
3328
  - nosniff
3329
+ X-Frame-Options:
3330
+ - SAMEORIGIN
3241
3331
  X-Powered-By:
3242
3332
  - Phusion Passenger 5.1.2
3333
+ X-Request-Id:
3334
+ - e3ffc39b-4a67-46ed-87c5-d9970bc55b65
3335
+ X-Runtime:
3336
+ - '0.011678'
3337
+ X-Xss-Protection:
3338
+ - 1; mode=block
3339
+ Content-Length:
3340
+ - '238'
3341
+ Connection:
3342
+ - keep-alive
3243
3343
  body:
3244
3344
  encoding: UTF-8
3245
- string: '{"data":{"id":"822fc357-3f7f-461c-a7ba-c32346f57797","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1008321","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
3345
+ string: '{"data":{"id":"822fc357-3f7f-461c-a7ba-c32346f57797","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1008321","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
3246
3346
  http_version:
3247
3347
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
3248
3348
  - request:
@@ -3265,43 +3365,45 @@ http_interactions:
3265
3365
  code: 202
3266
3366
  message: ''
3267
3367
  headers:
3268
- Server:
3269
- - openresty/1.11.2.1
3270
- Date:
3271
- - Thu, 02 Feb 2017 14:31:35 GMT
3368
+ Access-Control-Allow-Headers:
3369
+ - Origin, Content-Type, Accept, Authorization, Token
3370
+ Access-Control-Allow-Methods:
3371
+ - GET, POST, OPTIONS
3372
+ Access-Control-Allow-Origin:
3373
+ - "*"
3374
+ Access-Control-Max-Age:
3375
+ - '1728000'
3376
+ Cache-Control:
3377
+ - no-cache
3272
3378
  Content-Type:
3273
3379
  - application/json; charset=utf-8
3274
- Connection:
3275
- - keep-alive
3380
+ Date:
3381
+ - Sat, 11 Mar 2017 10:45:02 GMT
3382
+ Server:
3383
+ - openresty/1.11.2.2
3276
3384
  Status:
3277
3385
  - 202 Accepted
3278
- Cache-Control:
3279
- - no-cache
3280
- Access-Control-Allow-Origin:
3281
- - "*"
3282
3386
  Vary:
3283
3387
  - Accept-Encoding
3284
- Access-Control-Max-Age:
3285
- - '1728000'
3286
- X-Xss-Protection:
3287
- - 1; mode=block
3288
- X-Request-Id:
3289
- - f74943ac-0548-429d-8b60-39efb4098232
3290
- Access-Control-Allow-Headers:
3291
- - Origin, Content-Type, Accept, Authorization, Token
3292
- Access-Control-Allow-Methods:
3293
- - GET, POST, OPTIONS
3294
- X-Runtime:
3295
- - '0.031226'
3296
- X-Frame-Options:
3297
- - SAMEORIGIN
3298
3388
  X-Content-Type-Options:
3299
3389
  - nosniff
3390
+ X-Frame-Options:
3391
+ - SAMEORIGIN
3300
3392
  X-Powered-By:
3301
3393
  - Phusion Passenger 5.1.2
3394
+ X-Request-Id:
3395
+ - d852451b-625c-45d9-8b3f-17cd00e37a8d
3396
+ X-Runtime:
3397
+ - '0.013447'
3398
+ X-Xss-Protection:
3399
+ - 1; mode=block
3400
+ Content-Length:
3401
+ - '238'
3402
+ Connection:
3403
+ - keep-alive
3302
3404
  body:
3303
3405
  encoding: UTF-8
3304
- string: '{"data":{"id":"fa61847e-92ff-4394-8b0f-4bdfb15beba8","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1008320","source-id":"orcid_update","state":"ignored","claim-action":"create","claimed-at":null}}}'
3406
+ string: '{"data":{"id":"fa61847e-92ff-4394-8b0f-4bdfb15beba8","type":"claims","attributes":{"orcid":"0000-0002-3546-1048","doi":"10.6084/M9.FIGSHARE.1008320","source-id":"orcid_update","state":"waiting","claim-action":"create","claimed-at":null}}}'
3305
3407
  http_version:
3306
3408
  recorded_at: Tue, 07 Apr 2015 22:00:00 GMT
3307
3409
  recorded_with: VCR 3.0.3