shutterstock-v2 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +27 -0
- data/.rspec +3 -0
- data/.rubocop.yml +6 -0
- data/.travis.yml +6 -0
- data/Dockerfile +17 -0
- data/Gemfile +3 -0
- data/Guardfile +9 -0
- data/README.md +377 -0
- data/Rakefile +19 -0
- data/lib/client/auth.rb +48 -0
- data/lib/client/categories.rb +11 -0
- data/lib/client/category.rb +16 -0
- data/lib/client/client.rb +72 -0
- data/lib/client/collection.rb +151 -0
- data/lib/client/collections.rb +16 -0
- data/lib/client/configuration.rb +20 -0
- data/lib/client/contributor.rb +15 -0
- data/lib/client/driver.rb +38 -0
- data/lib/client/error.rb +20 -0
- data/lib/client/image.rb +139 -0
- data/lib/client/image_assets.rb +56 -0
- data/lib/client/image_size_details.rb +26 -0
- data/lib/client/images.rb +27 -0
- data/lib/client/license.rb +67 -0
- data/lib/client/licenses.rb +23 -0
- data/lib/client/model.rb +15 -0
- data/lib/client/models.rb +11 -0
- data/lib/client/request.rb +41 -0
- data/lib/client/subscription.rb +35 -0
- data/lib/client/subscription_allotment.rb +19 -0
- data/lib/client/subscription_license_format.rb +16 -0
- data/lib/client/subscription_license_formats.rb +12 -0
- data/lib/client/subscription_price.rb +13 -0
- data/lib/client/subscriptions.rb +37 -0
- data/lib/client/thumbnail.rb +17 -0
- data/lib/client/user.rb +68 -0
- data/lib/client/version.rb +3 -0
- data/lib/shutterstock-v2.rb +31 -0
- data/shutterstock-v2.gemspec +30 -0
- data/spec/cassettes/Shutterstock_Auth_get_access_token/returns_hash_with_access_token.yml +86 -0
- data/spec/cassettes/Shutterstock_Auth_get_authorize_url/returns_URL_to_redirect_user_to_passing_redirect_url_an.yml +48 -0
- data/spec/cassettes/Shutterstock_Categories/parses_params_correctly.yml +53 -0
- data/spec/cassettes/Shutterstock_Categories/returns_all_cats_for_an_image.yml +53 -0
- data/spec/cassettes/Shutterstock_Collection/add_image_adds_image_using_Image_new.yml +48 -0
- data/spec/cassettes/Shutterstock_Collection/add_image_adds_image_using_id.yml +48 -0
- data/spec/cassettes/Shutterstock_Collection/add_image_error_raises_error_if_collection_does_not_exist.yml +52 -0
- data/spec/cassettes/Shutterstock_Collection/create_creates_a_collection.yml +52 -0
- data/spec/cassettes/Shutterstock_Collection/destroy_destroys_a_collection.yml +93 -0
- data/spec/cassettes/Shutterstock_Collection/find_adds_an_image.yml +97 -0
- data/spec/cassettes/Shutterstock_Collection/find_converts_list_to_images.yml +101 -0
- data/spec/cassettes/Shutterstock_Collection/find_finds_a_collection_given_an_id.yml +52 -0
- data/spec/cassettes/Shutterstock_Collection/find_raises_error_for_invalid_collection_id.yml +50 -0
- data/spec/cassettes/Shutterstock_Collection/find_removes_an_image.yml +95 -0
- data/spec/cassettes/Shutterstock_Collection/list_returns_all_collections_for_the_current_user.yml +53 -0
- data/spec/cassettes/Shutterstock_Collection/remove_image_removes_image_using_Image_new.yml +46 -0
- data/spec/cassettes/Shutterstock_Collection/remove_image_removes_image_using_id.yml +46 -0
- data/spec/cassettes/Shutterstock_Collection/update_changes_the_name_of_a_collection.yml +97 -0
- data/spec/cassettes/Shutterstock_Collections/returns_all_collections_for_current_user.yml +53 -0
- data/spec/cassettes/Shutterstock_Image/fill_fills_all_details_of_current_image.yml +109 -0
- data/spec/cassettes/Shutterstock_Image/fills_all_details_of_current_image.yml +109 -0
- data/spec/cassettes/Shutterstock_Image/find_places_image_data_into_correct_fields.yml +56 -0
- data/spec/cassettes/Shutterstock_Image/find_places_more_image_data_into_correct_fields.yml +53 -0
- data/spec/cassettes/Shutterstock_Image/find_returns_an_Image_object.yml +56 -0
- data/spec/cassettes/Shutterstock_Image/finds_similar_images_given_an_image.yml +125 -0
- data/spec/cassettes/Shutterstock_Image/returns_an_Image_object.yml +56 -0
- data/spec/cassettes/Shutterstock_Image/returns_similar_images.yml +72 -0
- data/spec/cassettes/Shutterstock_Image/search_searches_for_images_based_on_searchterm.yml +73 -0
- data/spec/cassettes/Shutterstock_Image/search_searches_using_more_than_one_parameter.yml +77 -0
- data/spec/cassettes/Shutterstock_Image/searches_for_images_based_on_searchterm.yml +73 -0
- data/spec/cassettes/Shutterstock_Image/searches_using_more_than_one_parameter.yml +77 -0
- data/spec/cassettes/Shutterstock_Image/similar_finds_similar_images_given_an_image.yml +125 -0
- data/spec/cassettes/Shutterstock_Image/similar_returns_similar_images.yml +72 -0
- data/spec/cassettes/Shutterstock_ImageAssets/find_calculates_fields_correctly.yml +53 -0
- data/spec/cassettes/Shutterstock_ImageAssets/find_places_image_data_into_correct_fields.yml +53 -0
- data/spec/cassettes/Shutterstock_Images/fill_fills_details_of_all_images_in_list_all_images_now_have_keywords.yml +1144 -0
- data/spec/cassettes/Shutterstock_Images/returns_similar_images.yml +126 -0
- data/spec/cassettes/Shutterstock_License/license_editorial_acknowledgement_returns_error_if_requesting_an_image.yml +53 -0
- data/spec/cassettes/Shutterstock_License/license_editorial_acknowledgement_returns_licenced_image_if_ed_ack_is_.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_license_from_image_object_sends_editorial_acknowledgement_when.yml +160 -0
- data/spec/cassettes/Shutterstock_License/license_license_from_image_object_using_found_subscription.yml +108 -0
- data/spec/cassettes/Shutterstock_License/license_license_from_image_object_vector_image.yml +108 -0
- data/spec/cassettes/Shutterstock_License/license_multiple_licenses_multiple_images.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_multiple_licenses_multiple_images_from_Image_new.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_multiple_returns_error_in_Licenses_when_incorrect_image_used.yml +53 -0
- data/spec/cassettes/Shutterstock_License/license_single_licencing_same_image_twice_does_not_give_error.yml +101 -0
- data/spec/cassettes/Shutterstock_License/license_single_license_fails_when_subscription_doesn_t_allow.yml +49 -0
- data/spec/cassettes/Shutterstock_License/license_single_licenses_single_image.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_single_licenses_single_image_from_Image_new.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_single_licenses_single_image_from_hash.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_single_licenses_single_image_with_smaller_size.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_single_licenses_vector_image.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_single_licensing_same_image_twice_does_not_give_error.yml +101 -0
- data/spec/cassettes/Shutterstock_License/license_single_returns_error_when_incorrect_image_used.yml +103 -0
- data/spec/cassettes/Shutterstock_License/license_single_returns_error_when_incorrect_subscription_used.yml +53 -0
- data/spec/cassettes/Shutterstock_Models/parses_params_correctly.yml +53 -0
- data/spec/cassettes/Shutterstock_Models/returns_all_models_for_an_image.yml +53 -0
- data/spec/cassettes/Shutterstock_Subscription/allows_image_size_download_correctly_finds_if_image_size_is_possi.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscription/new_parses_info_on_user_correctly.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscription/new_returns_a_subscription_for_current_user.yml +59 -0
- data/spec/cassettes/Shutterstock_SubscriptionLicenseFormat/new_parses_info_correctly.yml +59 -0
- data/spec/cassettes/Shutterstock_SubscriptionLicenseFormat/new_returns_a_subscription_license_format_for_curren.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscriptions/subscriptions_active_expired_total_subscriptions.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscriptions/subscriptions_active_returns_only_active_subscriptions.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscriptions/subscriptions_downloads_left_only_subscriptions_with_downloads_l.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscriptions/subscriptions_expired_returns_only_expired_subscriptions.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscriptions/subscriptions_find_subscription_for_image_size_finds_subs_to_use.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscriptions/subscriptions_returns_all_subscriptions_for_current_user.yml +59 -0
- data/spec/cassettes/Shutterstock_User/find_parses_info_on_user_correctly.yml +52 -0
- data/spec/cassettes/Shutterstock_User/find_returns_object_for_current_user.yml +52 -0
- data/spec/client/auth_spec.rb +36 -0
- data/spec/client/categories_spec.rb +26 -0
- data/spec/client/category_spec.rb +16 -0
- data/spec/client/client_spec.rb +32 -0
- data/spec/client/collection_spec.rb +159 -0
- data/spec/client/collections_spec.rb +18 -0
- data/spec/client/configuration_spec.rb +10 -0
- data/spec/client/contributor_spec.rb +14 -0
- data/spec/client/driver_spec.rb +20 -0
- data/spec/client/image_assets_spec.rb +51 -0
- data/spec/client/image_size_details_spec.rb +33 -0
- data/spec/client/image_spec.rb +102 -0
- data/spec/client/images_spec.rb +31 -0
- data/spec/client/license_spec.rb +234 -0
- data/spec/client/model_spec.rb +14 -0
- data/spec/client/models_spec.rb +23 -0
- data/spec/client/request_spec.rb +79 -0
- data/spec/client/subscription_allotment_spec.rb +25 -0
- data/spec/client/subscription_license_format_spec.rb +29 -0
- data/spec/client/subscription_price_spec.rb +17 -0
- data/spec/client/subscription_spec.rb +60 -0
- data/spec/client/subscriptions_spec.rb +54 -0
- data/spec/client/thumbnail_spec.rb +21 -0
- data/spec/client/user_spec.rb +37 -0
- data/spec/spec_helper.rb +88 -0
- metadata +467 -0
@@ -0,0 +1,53 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.shutterstock.com/v2/images/356308322
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.10.1
|
12
|
+
Authorization:
|
13
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Accept:
|
17
|
+
- "*/*"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Server:
|
24
|
+
- nginx
|
25
|
+
Date:
|
26
|
+
- Sun, 08 Jan 2017 00:34:17 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf8
|
29
|
+
Content-Length:
|
30
|
+
- '1794'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
X-End-User-Request-Id:
|
34
|
+
- '0787b45a-d432-4b70-9a11-de9f0e3b55db'
|
35
|
+
X-Shutterstock-Resource:
|
36
|
+
- "/v2/images/:id"
|
37
|
+
X-Shutterstock-App-Version:
|
38
|
+
- apitwo-739
|
39
|
+
Cache-Control:
|
40
|
+
- 'private; max-age: 60'
|
41
|
+
Etag:
|
42
|
+
- c409f7b27c1558af18f802e849c94d28
|
43
|
+
X-End-User-User-Id:
|
44
|
+
- "<SSTK_USER_ID>"
|
45
|
+
X-End-User-Client-Id:
|
46
|
+
- "<SSTK_CLIENT_ID>"
|
47
|
+
body:
|
48
|
+
encoding: UTF-8
|
49
|
+
string: '{"id":"356308322","added_date":"2015-12-29","aspect":1.498,"assets":{"small_jpg":{"display_name":"Small","dpi":72,"file_size":128000,"format":"jpg","height":334,"is_licensable":true,"width":500},"medium_jpg":{"display_name":"Med","dpi":300,"file_size":417792,"format":"jpg","height":668,"is_licensable":true,"width":1000},"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":5781504,"format":"jpg","height":3691,"is_licensable":true,"width":5529},"huge_tiff":{"display_name":"Huge","dpi":300,"file_size":61222617,"format":"tiff","height":3691,"is_licensable":false,"width":5529},"preview":{"height":300,"url":"https://image.shutterstock.com/display_pic_with_logo/2396102/356308322/stock-photo-cute-asian-children-lying-on-white-bed-356308322.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb9.shutterstock.com/thumb_small/2396102/356308322/stock-photo-cute-asian-children-lying-on-white-bed-356308322.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb9.shutterstock.com/thumb_large/2396102/356308322/stock-photo-cute-asian-children-lying-on-white-bed-356308322.jpg","width":150}},"categories":[{"id":"13","name":"People"},{"id":"20","name":"NOT-CATEGORIZED"}],"contributor":{"id":"2396102"},"description":"Cute
|
50
|
+
asian children lying on white bed","image_type":"photo","is_adult":false,"has_model_release":true,"keywords":["asia","asian","background","bed","boy","brother","cheerful","child","childhood","cute","face","family","filter","friendship","fun","girl","happiness","happy","hug","japan","japanese","kid","korea","korean","laugh","little","look","love","lying","people","person","play","playful","portrait","sibling","sister","smile","toddler","two","vintage","white","young","youth"],"media_type":"image","models":[{"id":"17856134"},{"id":"15233887"}]}'
|
51
|
+
http_version:
|
52
|
+
recorded_at: Sun, 08 Jan 2017 00:34:17 GMT
|
53
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,53 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.shutterstock.com/v2/images/356308322
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.10.1
|
12
|
+
Authorization:
|
13
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Accept:
|
17
|
+
- "*/*"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Server:
|
24
|
+
- nginx
|
25
|
+
Date:
|
26
|
+
- Sun, 08 Jan 2017 00:34:16 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf8
|
29
|
+
Content-Length:
|
30
|
+
- '1794'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
X-End-User-Request-Id:
|
34
|
+
- 3409a27e-584b-4521-b8dc-f001d1d57ead
|
35
|
+
X-Shutterstock-Resource:
|
36
|
+
- "/v2/images/:id"
|
37
|
+
X-Shutterstock-App-Version:
|
38
|
+
- apitwo-739
|
39
|
+
Cache-Control:
|
40
|
+
- 'private; max-age: 60'
|
41
|
+
Etag:
|
42
|
+
- c409f7b27c1558af18f802e849c94d28
|
43
|
+
X-End-User-User-Id:
|
44
|
+
- "<SSTK_USER_ID>"
|
45
|
+
X-End-User-Client-Id:
|
46
|
+
- "<SSTK_CLIENT_ID>"
|
47
|
+
body:
|
48
|
+
encoding: UTF-8
|
49
|
+
string: '{"id":"356308322","added_date":"2015-12-29","aspect":1.498,"assets":{"small_jpg":{"display_name":"Small","dpi":72,"file_size":128000,"format":"jpg","height":334,"is_licensable":true,"width":500},"medium_jpg":{"display_name":"Med","dpi":300,"file_size":417792,"format":"jpg","height":668,"is_licensable":true,"width":1000},"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":5781504,"format":"jpg","height":3691,"is_licensable":true,"width":5529},"huge_tiff":{"display_name":"Huge","dpi":300,"file_size":61222617,"format":"tiff","height":3691,"is_licensable":false,"width":5529},"preview":{"height":300,"url":"https://image.shutterstock.com/display_pic_with_logo/2396102/356308322/stock-photo-cute-asian-children-lying-on-white-bed-356308322.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb9.shutterstock.com/thumb_small/2396102/356308322/stock-photo-cute-asian-children-lying-on-white-bed-356308322.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb9.shutterstock.com/thumb_large/2396102/356308322/stock-photo-cute-asian-children-lying-on-white-bed-356308322.jpg","width":150}},"categories":[{"id":"13","name":"People"},{"id":"20","name":"NOT-CATEGORIZED"}],"contributor":{"id":"2396102"},"description":"Cute
|
50
|
+
asian children lying on white bed","image_type":"photo","is_adult":false,"has_model_release":true,"keywords":["asia","asian","background","bed","boy","brother","cheerful","child","childhood","cute","face","family","filter","friendship","fun","girl","happiness","happy","hug","japan","japanese","kid","korea","korean","laugh","little","look","love","lying","people","person","play","playful","portrait","sibling","sister","smile","toddler","two","vintage","white","young","youth"],"media_type":"image","models":[{"id":"17856134"},{"id":"15233887"}]}'
|
51
|
+
http_version:
|
52
|
+
recorded_at: Sun, 08 Jan 2017 00:34:16 GMT
|
53
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,59 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.shutterstock.com/v2/user/subscriptions
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.10.1
|
12
|
+
Authorization:
|
13
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Accept:
|
17
|
+
- "*/*"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Server:
|
24
|
+
- nginx
|
25
|
+
Date:
|
26
|
+
- Sun, 08 Jan 2017 04:43:04 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf8
|
29
|
+
Content-Length:
|
30
|
+
- '3544'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
X-End-User-Request-Id:
|
34
|
+
- 9eecf3b2-aa27-4b72-b102-f2a962df4da8
|
35
|
+
X-Shutterstock-Resource:
|
36
|
+
- "/v2/user/subscriptions"
|
37
|
+
X-Shutterstock-App-Version:
|
38
|
+
- apitwo-739
|
39
|
+
Cache-Control:
|
40
|
+
- no-cache
|
41
|
+
Etag:
|
42
|
+
- d755d0bb5e116746e5d1f07b5cd08591
|
43
|
+
X-End-User-User-Id:
|
44
|
+
- "<SSTK_USER_ID>"
|
45
|
+
X-End-User-Client-Id:
|
46
|
+
- "<SSTK_CLIENT_ID>"
|
47
|
+
body:
|
48
|
+
encoding: UTF-8
|
49
|
+
string: '{"data":[{"id":"s29729296","expiration_time":"2016-12-28T09:36:49-05:00","license":"standard","description":"Monthly
|
50
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s14235337","expiration_time":"2015-08-08T22:43:27-04:00","license":"standard","description":"Images
|
51
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]},{"id":"s13218524","expiration_time":"2015-05-27T01:35:45-04:00","license":"standard","description":"Images
|
52
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]},{"id":"s8250890","expiration_time":"2015-05-21T03:56:18-04:00","license":"standard","description":"25-A-Day
|
53
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s30187600","expiration_time":"2017-02-05T23:29:10-05:00","license":"standard","description":"Monthly
|
54
|
+
Subscription","allotment":{"start_time":"2017-01-05T23:29:11-05:00","end_time":"2017-02-05T23:29:10-05:00","downloads_left":350,"downloads_limit":350},"formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s19375703","expiration_time":"2016-12-12T12:47:21-05:00","license":"standard","description":"Monthly
|
55
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s12406385","expiration_time":"2015-03-31T10:16:29-04:00","license":"standard","description":"Images
|
56
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]}]}'
|
57
|
+
http_version:
|
58
|
+
recorded_at: Sun, 08 Jan 2017 04:43:05 GMT
|
59
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,59 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.shutterstock.com/v2/user/subscriptions
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.10.1
|
12
|
+
Authorization:
|
13
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Accept:
|
17
|
+
- "*/*"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Server:
|
24
|
+
- nginx
|
25
|
+
Date:
|
26
|
+
- Sun, 08 Jan 2017 04:13:15 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf8
|
29
|
+
Content-Length:
|
30
|
+
- '3544'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
X-End-User-Request-Id:
|
34
|
+
- f18e6596-0482-44b1-9bee-fadf5d3929f8
|
35
|
+
X-Shutterstock-Resource:
|
36
|
+
- "/v2/user/subscriptions"
|
37
|
+
X-Shutterstock-App-Version:
|
38
|
+
- apitwo-739
|
39
|
+
Cache-Control:
|
40
|
+
- no-cache
|
41
|
+
Etag:
|
42
|
+
- d755d0bb5e116746e5d1f07b5cd08591
|
43
|
+
X-End-User-User-Id:
|
44
|
+
- "<SSTK_USER_ID>"
|
45
|
+
X-End-User-Client-Id:
|
46
|
+
- "<SSTK_CLIENT_ID>"
|
47
|
+
body:
|
48
|
+
encoding: UTF-8
|
49
|
+
string: '{"data":[{"id":"s29729296","expiration_time":"2016-12-28T09:36:49-05:00","license":"standard","description":"Monthly
|
50
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s14235337","expiration_time":"2015-08-08T22:43:27-04:00","license":"standard","description":"Images
|
51
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]},{"id":"s13218524","expiration_time":"2015-05-27T01:35:45-04:00","license":"standard","description":"Images
|
52
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]},{"id":"s8250890","expiration_time":"2015-05-21T03:56:18-04:00","license":"standard","description":"25-A-Day
|
53
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s30187600","expiration_time":"2017-02-05T23:29:10-05:00","license":"standard","description":"Monthly
|
54
|
+
Subscription","allotment":{"start_time":"2017-01-05T23:29:11-05:00","end_time":"2017-02-05T23:29:10-05:00","downloads_left":350,"downloads_limit":350},"formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s19375703","expiration_time":"2016-12-12T12:47:21-05:00","license":"standard","description":"Monthly
|
55
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s12406385","expiration_time":"2015-03-31T10:16:29-04:00","license":"standard","description":"Images
|
56
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]}]}'
|
57
|
+
http_version:
|
58
|
+
recorded_at: Sun, 08 Jan 2017 04:13:15 GMT
|
59
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,59 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.shutterstock.com/v2/user/subscriptions
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.10.1
|
12
|
+
Authorization:
|
13
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Accept:
|
17
|
+
- "*/*"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Server:
|
24
|
+
- nginx
|
25
|
+
Date:
|
26
|
+
- Sun, 08 Jan 2017 04:13:14 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf8
|
29
|
+
Content-Length:
|
30
|
+
- '3544'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
X-End-User-Request-Id:
|
34
|
+
- cf5d6974-f0c8-4d32-a016-59ca53f0bd2b
|
35
|
+
X-Shutterstock-Resource:
|
36
|
+
- "/v2/user/subscriptions"
|
37
|
+
X-Shutterstock-App-Version:
|
38
|
+
- apitwo-739
|
39
|
+
Cache-Control:
|
40
|
+
- no-cache
|
41
|
+
Etag:
|
42
|
+
- d755d0bb5e116746e5d1f07b5cd08591
|
43
|
+
X-End-User-User-Id:
|
44
|
+
- "<SSTK_USER_ID>"
|
45
|
+
X-End-User-Client-Id:
|
46
|
+
- "<SSTK_CLIENT_ID>"
|
47
|
+
body:
|
48
|
+
encoding: UTF-8
|
49
|
+
string: '{"data":[{"id":"s29729296","expiration_time":"2016-12-28T09:36:49-05:00","license":"standard","description":"Monthly
|
50
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s14235337","expiration_time":"2015-08-08T22:43:27-04:00","license":"standard","description":"Images
|
51
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]},{"id":"s13218524","expiration_time":"2015-05-27T01:35:45-04:00","license":"standard","description":"Images
|
52
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]},{"id":"s8250890","expiration_time":"2015-05-21T03:56:18-04:00","license":"standard","description":"25-A-Day
|
53
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s30187600","expiration_time":"2017-02-05T23:29:10-05:00","license":"standard","description":"Monthly
|
54
|
+
Subscription","allotment":{"start_time":"2017-01-05T23:29:11-05:00","end_time":"2017-02-05T23:29:10-05:00","downloads_left":350,"downloads_limit":350},"formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s19375703","expiration_time":"2016-12-12T12:47:21-05:00","license":"standard","description":"Monthly
|
55
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s12406385","expiration_time":"2015-03-31T10:16:29-04:00","license":"standard","description":"Images
|
56
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]}]}'
|
57
|
+
http_version:
|
58
|
+
recorded_at: Sun, 08 Jan 2017 04:13:14 GMT
|
59
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,59 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.shutterstock.com/v2/user/subscriptions
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.10.1
|
12
|
+
Authorization:
|
13
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Accept:
|
17
|
+
- "*/*"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Server:
|
24
|
+
- nginx
|
25
|
+
Date:
|
26
|
+
- Sun, 08 Jan 2017 04:21:57 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf8
|
29
|
+
Content-Length:
|
30
|
+
- '3544'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
X-End-User-Request-Id:
|
34
|
+
- 41a10e57-f683-40a5-b904-e116abfa8e0e
|
35
|
+
X-Shutterstock-Resource:
|
36
|
+
- "/v2/user/subscriptions"
|
37
|
+
X-Shutterstock-App-Version:
|
38
|
+
- apitwo-739
|
39
|
+
Cache-Control:
|
40
|
+
- no-cache
|
41
|
+
Etag:
|
42
|
+
- d755d0bb5e116746e5d1f07b5cd08591
|
43
|
+
X-End-User-User-Id:
|
44
|
+
- "<SSTK_USER_ID>"
|
45
|
+
X-End-User-Client-Id:
|
46
|
+
- "<SSTK_CLIENT_ID>"
|
47
|
+
body:
|
48
|
+
encoding: UTF-8
|
49
|
+
string: '{"data":[{"id":"s29729296","expiration_time":"2016-12-28T09:36:49-05:00","license":"standard","description":"Monthly
|
50
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s14235337","expiration_time":"2015-08-08T22:43:27-04:00","license":"standard","description":"Images
|
51
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]},{"id":"s13218524","expiration_time":"2015-05-27T01:35:45-04:00","license":"standard","description":"Images
|
52
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]},{"id":"s8250890","expiration_time":"2015-05-21T03:56:18-04:00","license":"standard","description":"25-A-Day
|
53
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s30187600","expiration_time":"2017-02-05T23:29:10-05:00","license":"standard","description":"Monthly
|
54
|
+
Subscription","allotment":{"start_time":"2017-01-05T23:29:11-05:00","end_time":"2017-02-05T23:29:10-05:00","downloads_left":350,"downloads_limit":350},"formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s19375703","expiration_time":"2016-12-12T12:47:21-05:00","license":"standard","description":"Monthly
|
55
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s12406385","expiration_time":"2015-03-31T10:16:29-04:00","license":"standard","description":"Images
|
56
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]}]}'
|
57
|
+
http_version:
|
58
|
+
recorded_at: Sun, 08 Jan 2017 04:21:57 GMT
|
59
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,59 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.shutterstock.com/v2/user/subscriptions
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.10.1
|
12
|
+
Authorization:
|
13
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Accept:
|
17
|
+
- "*/*"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Server:
|
24
|
+
- nginx
|
25
|
+
Date:
|
26
|
+
- Sun, 08 Jan 2017 04:21:54 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf8
|
29
|
+
Content-Length:
|
30
|
+
- '3544'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
X-End-User-Request-Id:
|
34
|
+
- 8a07c77e-728d-4074-a502-f976afa4e38e
|
35
|
+
X-Shutterstock-Resource:
|
36
|
+
- "/v2/user/subscriptions"
|
37
|
+
X-Shutterstock-App-Version:
|
38
|
+
- apitwo-739
|
39
|
+
Cache-Control:
|
40
|
+
- no-cache
|
41
|
+
Etag:
|
42
|
+
- d755d0bb5e116746e5d1f07b5cd08591
|
43
|
+
X-End-User-User-Id:
|
44
|
+
- "<SSTK_USER_ID>"
|
45
|
+
X-End-User-Client-Id:
|
46
|
+
- "<SSTK_CLIENT_ID>"
|
47
|
+
body:
|
48
|
+
encoding: UTF-8
|
49
|
+
string: '{"data":[{"id":"s29729296","expiration_time":"2016-12-28T09:36:49-05:00","license":"standard","description":"Monthly
|
50
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s14235337","expiration_time":"2015-08-08T22:43:27-04:00","license":"standard","description":"Images
|
51
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]},{"id":"s13218524","expiration_time":"2015-05-27T01:35:45-04:00","license":"standard","description":"Images
|
52
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]},{"id":"s8250890","expiration_time":"2015-05-21T03:56:18-04:00","license":"standard","description":"25-A-Day
|
53
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s30187600","expiration_time":"2017-02-05T23:29:10-05:00","license":"standard","description":"Monthly
|
54
|
+
Subscription","allotment":{"start_time":"2017-01-05T23:29:11-05:00","end_time":"2017-02-05T23:29:10-05:00","downloads_left":350,"downloads_limit":350},"formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s19375703","expiration_time":"2016-12-12T12:47:21-05:00","license":"standard","description":"Monthly
|
55
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s12406385","expiration_time":"2015-03-31T10:16:29-04:00","license":"standard","description":"Images
|
56
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]}]}'
|
57
|
+
http_version:
|
58
|
+
recorded_at: Sun, 08 Jan 2017 04:21:55 GMT
|
59
|
+
recorded_with: VCR 3.0.3
|
data/spec/cassettes/Shutterstock_Subscriptions/subscriptions_active_expired_total_subscriptions.yml
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.shutterstock.com/v2/user/subscriptions
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.10.1
|
12
|
+
Authorization:
|
13
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Accept:
|
17
|
+
- "*/*"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Server:
|
24
|
+
- nginx
|
25
|
+
Date:
|
26
|
+
- Sun, 08 Jan 2017 04:45:28 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf8
|
29
|
+
Content-Length:
|
30
|
+
- '3544'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
X-End-User-Request-Id:
|
34
|
+
- 0da4710d-1fbb-4a5a-be80-68d3a0c4662a
|
35
|
+
X-Shutterstock-Resource:
|
36
|
+
- "/v2/user/subscriptions"
|
37
|
+
X-Shutterstock-App-Version:
|
38
|
+
- apitwo-739
|
39
|
+
Cache-Control:
|
40
|
+
- no-cache
|
41
|
+
Etag:
|
42
|
+
- d755d0bb5e116746e5d1f07b5cd08591
|
43
|
+
X-End-User-User-Id:
|
44
|
+
- "<SSTK_USER_ID>"
|
45
|
+
X-End-User-Client-Id:
|
46
|
+
- "<SSTK_CLIENT_ID>"
|
47
|
+
body:
|
48
|
+
encoding: UTF-8
|
49
|
+
string: '{"data":[{"id":"s29729296","expiration_time":"2016-12-28T09:36:49-05:00","license":"standard","description":"Monthly
|
50
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s14235337","expiration_time":"2015-08-08T22:43:27-04:00","license":"standard","description":"Images
|
51
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]},{"id":"s13218524","expiration_time":"2015-05-27T01:35:45-04:00","license":"standard","description":"Images
|
52
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]},{"id":"s8250890","expiration_time":"2015-05-21T03:56:18-04:00","license":"standard","description":"25-A-Day
|
53
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s30187600","expiration_time":"2017-02-05T23:29:10-05:00","license":"standard","description":"Monthly
|
54
|
+
Subscription","allotment":{"start_time":"2017-01-05T23:29:11-05:00","end_time":"2017-02-05T23:29:10-05:00","downloads_left":350,"downloads_limit":350},"formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s19375703","expiration_time":"2016-12-12T12:47:21-05:00","license":"standard","description":"Monthly
|
55
|
+
Subscription","formats":[{"size":"huge","format":"jpg","media_type":"image","min_resolution":4000000,"description":"Huge"},{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"supersize","format":"jpg","media_type":"image","min_resolution":16000000,"description":"Super"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"},{"size":"vector","format":"eps","media_type":"image","description":"Vector"}]},{"id":"s12406385","expiration_time":"2015-03-31T10:16:29-04:00","license":"standard","description":"Images
|
56
|
+
On Demand","formats":[{"size":"medium","format":"jpg","media_type":"image","min_resolution":1000,"description":"Med"},{"size":"small","format":"jpg","media_type":"image","min_resolution":500,"description":"Small"}]}]}'
|
57
|
+
http_version:
|
58
|
+
recorded_at: Sun, 08 Jan 2017 04:45:28 GMT
|
59
|
+
recorded_with: VCR 3.0.3
|