brightbox-cli 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/CHANGELOG.md +18 -0
- data/Gemfile.lock +18 -19
- data/bin/_brightbox-bash-completer +42 -0
- data/brightbox-cli.gemspec +5 -5
- data/lib/brightbox-cli/accounts.rb +1 -3
- data/lib/brightbox-cli/api.rb +27 -8
- data/lib/brightbox-cli/cloud_ips.rb +11 -15
- data/lib/brightbox-cli/collaborating_account.rb +23 -26
- data/lib/brightbox-cli/collaboration.rb +1 -1
- data/lib/brightbox-cli/commands/{accounts-accept-invite.rb → accounts/accept-invite.rb} +2 -3
- data/lib/brightbox-cli/commands/{accounts-default.rb → accounts/default.rb} +1 -3
- data/lib/brightbox-cli/commands/{accounts-list.rb → accounts/list.rb} +1 -1
- data/lib/brightbox-cli/commands/{accounts-remove.rb → accounts/remove.rb} +1 -2
- data/lib/brightbox-cli/commands/{accounts-reset-ftp-password.rb → accounts/reset-ftp-password.rb} +10 -5
- data/lib/brightbox-cli/commands/{accounts-show.rb → accounts/show.rb} +14 -6
- data/lib/brightbox-cli/commands/{cloudips-create.rb → cloudips/create.rb} +4 -4
- data/lib/brightbox-cli/commands/{cloudips-destroy.rb → cloudips/destroy.rb} +1 -1
- data/lib/brightbox-cli/commands/{cloudips-list.rb → cloudips/list.rb} +2 -10
- data/lib/brightbox-cli/commands/{cloudips-map.rb → cloudips/map.rb} +2 -8
- data/lib/brightbox-cli/commands/{cloudips-show.rb → cloudips/show.rb} +13 -3
- data/lib/brightbox-cli/commands/{cloudips-unmap.rb → cloudips/unmap.rb} +1 -1
- data/lib/brightbox-cli/commands/{cloudips-update.rb → cloudips/update.rb} +5 -6
- data/lib/brightbox-cli/commands/collaborations.rb +3 -9
- data/lib/brightbox-cli/commands/{config-client-add.rb → config/client-add.rb} +2 -2
- data/lib/brightbox-cli/commands/{config-client-default.rb → config/client-default.rb} +1 -1
- data/lib/brightbox-cli/commands/{config-client-list.rb → config/client-list.rb} +3 -3
- data/lib/brightbox-cli/commands/{config-client-remove.rb → config/client-remove.rb} +4 -1
- data/lib/brightbox-cli/commands/{config-user-add.rb → config/user-add.rb} +1 -1
- data/lib/brightbox-cli/commands/{firewall-policies-apply.rb → firewall/policies-apply.rb} +3 -4
- data/lib/brightbox-cli/commands/{firewall-policies-create.rb → firewall/policies-create.rb} +3 -4
- data/lib/brightbox-cli/commands/{firewall-policies-destroy.rb → firewall/policies-destroy.rb} +2 -3
- data/lib/brightbox-cli/commands/{firewall-policies-list.rb → firewall/policies-list.rb} +2 -9
- data/lib/brightbox-cli/commands/{firewall-policies-remove.rb → firewall/policies-remove.rb} +2 -3
- data/lib/brightbox-cli/commands/{firewall-policies-show.rb → firewall/policies-show.rb} +11 -3
- data/lib/brightbox-cli/commands/{firewall-policies-update.rb → firewall/policies-update.rb} +3 -3
- data/lib/brightbox-cli/commands/{firewall-rules-create.rb → firewall/rules-create.rb} +4 -4
- data/lib/brightbox-cli/commands/{firewall-rules-destroy.rb → firewall/rules-destroy.rb} +2 -4
- data/lib/brightbox-cli/commands/{firewall-rules-list.rb → firewall/rules-list.rb} +2 -2
- data/lib/brightbox-cli/commands/{firewall-rules-show.rb → firewall/rules-show.rb} +10 -4
- data/lib/brightbox-cli/commands/{firewall-rules-update.rb → firewall/rules-update.rb} +3 -3
- data/lib/brightbox-cli/commands/{groups-add-server.rb → groups/add-server.rb} +2 -2
- data/lib/brightbox-cli/commands/{groups-create.rb → groups/create.rb} +3 -3
- data/lib/brightbox-cli/commands/{groups-destroy.rb → groups/destroy.rb} +2 -2
- data/lib/brightbox-cli/commands/groups/list.rb +14 -0
- data/lib/brightbox-cli/commands/{groups-move_servers.rb → groups/move_servers.rb} +1 -2
- data/lib/brightbox-cli/commands/{groups-remove-servers.rb → groups/remove-servers.rb} +1 -1
- data/lib/brightbox-cli/commands/{groups-show.rb → groups/show.rb} +1 -1
- data/lib/brightbox-cli/commands/{groups-update.rb → groups/update.rb} +5 -10
- data/lib/brightbox-cli/commands/{images-destroy.rb → images/destroy.rb} +2 -2
- data/lib/brightbox-cli/commands/{images-list.rb → images/list.rb} +2 -10
- data/lib/brightbox-cli/commands/{images-register.rb → images/register.rb} +6 -6
- data/lib/brightbox-cli/commands/{images-show.rb → images/show.rb} +2 -11
- data/lib/brightbox-cli/commands/{images-update.rb → images/update.rb} +8 -8
- data/lib/brightbox-cli/commands/{lbs-add-nodes.rb → lbs/add-nodes.rb} +2 -2
- data/lib/brightbox-cli/commands/{lbs-create.rb → lbs/create.rb} +16 -10
- data/lib/brightbox-cli/commands/{lbs-destroy.rb → lbs/destroy.rb} +1 -1
- data/lib/brightbox-cli/commands/{lbs-list.rb → lbs/list.rb} +2 -10
- data/lib/brightbox-cli/commands/{lbs-remove-nodes.rb → lbs/remove-nodes.rb} +2 -2
- data/lib/brightbox-cli/commands/{lbs-show.rb → lbs/show.rb} +4 -7
- data/lib/brightbox-cli/commands/{lbs-update.rb → lbs/update.rb} +16 -10
- data/lib/brightbox-cli/commands/{servers-activate-console.rb → servers/activate-console.rb} +3 -3
- data/lib/brightbox-cli/commands/{servers-create.rb → servers/create.rb} +4 -4
- data/lib/brightbox-cli/commands/{servers-destroy.rb → servers/destroy.rb} +2 -2
- data/lib/brightbox-cli/commands/{servers-list.rb → servers/list.rb} +7 -8
- data/lib/brightbox-cli/commands/{servers-show.rb → servers/show.rb} +1 -6
- data/lib/brightbox-cli/commands/{servers-shutdown.rb → servers/shutdown.rb} +1 -1
- data/lib/brightbox-cli/commands/{servers-snapshot.rb → servers/snapshot.rb} +1 -1
- data/lib/brightbox-cli/commands/{servers-start.rb → servers/start.rb} +1 -1
- data/lib/brightbox-cli/commands/{servers-stop.rb → servers/stop.rb} +1 -1
- data/lib/brightbox-cli/commands/{servers-update.rb → servers/update.rb} +2 -2
- data/lib/brightbox-cli/commands/sql/instances_create.rb +66 -0
- data/lib/brightbox-cli/commands/sql/instances_destroy.rb +28 -0
- data/lib/brightbox-cli/commands/sql/instances_list.rb +27 -0
- data/lib/brightbox-cli/commands/sql/instances_reset_password.rb +33 -0
- data/lib/brightbox-cli/commands/sql/instances_show.rb +26 -0
- data/lib/brightbox-cli/commands/sql/instances_snapshot.rb +25 -0
- data/lib/brightbox-cli/commands/sql/instances_update.rb +45 -0
- data/lib/brightbox-cli/commands/sql/snapshots_destroy.rb +31 -0
- data/lib/brightbox-cli/commands/sql/snapshots_list.rb +25 -0
- data/lib/brightbox-cli/commands/sql/snapshots_show.rb +26 -0
- data/lib/brightbox-cli/commands/sql/snapshots_update.rb +37 -0
- data/lib/brightbox-cli/commands/sql/types.rb +53 -0
- data/lib/brightbox-cli/commands/types.rb +1 -1
- data/lib/brightbox-cli/commands/users/list.rb +17 -0
- data/lib/brightbox-cli/commands/{users-show.rb → users/show.rb} +5 -13
- data/lib/brightbox-cli/commands/{users-update.rb → users/update.rb} +3 -3
- data/lib/brightbox-cli/config.rb +4 -7
- data/lib/brightbox-cli/config/accounts.rb +3 -6
- data/lib/brightbox-cli/config/api_client.rb +12 -4
- data/lib/brightbox-cli/config/authentication_tokens.rb +8 -14
- data/lib/brightbox-cli/config/clients.rb +6 -7
- data/lib/brightbox-cli/config/section_name_deduplicator.rb +4 -5
- data/lib/brightbox-cli/config/sections.rb +7 -10
- data/lib/brightbox-cli/config/user_application.rb +15 -7
- data/lib/brightbox-cli/connection_manager.rb +1 -2
- data/lib/brightbox-cli/database_server.rb +100 -0
- data/lib/brightbox-cli/database_snapshot.rb +36 -0
- data/lib/brightbox-cli/database_type.rb +44 -0
- data/lib/brightbox-cli/detailed_server.rb +8 -7
- data/lib/brightbox-cli/error_parser.rb +8 -4
- data/lib/brightbox-cli/firewall_rule.rb +5 -5
- data/lib/brightbox-cli/firewall_rules.rb +2 -3
- data/lib/brightbox-cli/gli_global_hooks.rb +7 -7
- data/lib/brightbox-cli/images.rb +13 -14
- data/lib/brightbox-cli/legacy/args_adjuster.rb +5 -6
- data/lib/brightbox-cli/load_balancers.rb +10 -13
- data/lib/brightbox-cli/logging.rb +3 -3
- data/lib/brightbox-cli/nilable_hash.rb +1 -1
- data/lib/brightbox-cli/ruby_core_ext.rb +1 -2
- data/lib/brightbox-cli/server_groups.rb +5 -5
- data/lib/brightbox-cli/servers.rb +9 -9
- data/lib/brightbox-cli/tables.rb +24 -25
- data/lib/brightbox-cli/types.rb +6 -5
- data/lib/brightbox-cli/user_collaboration.rb +2 -3
- data/lib/brightbox-cli/users.rb +3 -3
- data/lib/brightbox-cli/version.rb +1 -1
- data/lib/brightbox_cli.rb +10 -2
- data/locales/en.yml +205 -0
- data/spec/cassettes/Brightbox_Account/_all/when_connected_using_an_application/returns_a_collection_of_Accounts.yml +10 -10
- data/spec/cassettes/Brightbox_Account/_all/when_connected_using_an_application/returns_resources_on_the_same_connection.yml +4 -4
- data/spec/cassettes/Brightbox_Account/_all/when_connected_using_an_client/returns_a_collection_of_Accounts.yml +8 -8
- data/spec/cassettes/Brightbox_Account/_all/when_connected_using_an_client/returns_resources_on_the_same_connection.yml +4 -4
- data/spec/cassettes/Brightbox_BBConfig/_add_section/when_first_and_only_client/saves_changes_to_the_config_file.yml +4 -4
- data/spec/cassettes/Brightbox_BBConfig/_add_section/when_first_and_only_client/saves_the_default_account.yml +4 -4
- data/spec/cassettes/Brightbox_BBConfig/_add_section/when_first_and_only_client/saves_the_new_client_as_the_default.yml +4 -4
- data/spec/cassettes/Brightbox_BBConfig/_find_or_set_default_account/when_client_is_not_authenticated/does_not_raise_an_error.yml +176 -176
- data/spec/cassettes/Brightbox_BBConfig/_find_or_set_default_account/when_client_may_access_one_account/updates_the_setting.yml +176 -176
- data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_config_in_use_is_not_the_default/uses_correct_credentials.yml +2 -2
- data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_a_user_app_with_a_cached_refresh_token/caches_the_new_tokens.yml +2 -2
- data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_a_user_app_with_an_expired_refresh_token/caches_the_new_tokens.yml +4 -4
- data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_a_user_app_with_no_tokens/caches_the_new_tokens.yml +2 -2
- data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_a_user_app_with_no_tokens/prompts_user_to_retry_command.yml +2 -2
- data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_an_API_client_with_no_tokens/caches_a_new_access_token.yml +2 -2
- data/spec/cassettes/Brightbox_CloudIP/_find_all_/when_a_Cloud_IP_exists/returns_a_suitable.yml +28 -28
- data/spec/cassettes/Brightbox_FirewallPolicy/_apply_to/should_apply_firewall_policy.yml +24 -24
- data/spec/cassettes/Brightbox_FirewallPolicy/_create/should_create_firewall_policy.yml +24 -24
- data/spec/cassettes/Brightbox_FirewallPolicy/_destroy/should_destroy_firewall_policy.yml +28 -28
- data/spec/cassettes/Brightbox_FirewallPolicy/_find_all_/when_a_policy_exists/should_list_firewall_policy.yml +24 -24
- data/spec/cassettes/Brightbox_FirewallPolicy/_find_or_call/when_a_policy_exists/should_show_firewall_policy.yml +20 -20
- data/spec/cassettes/Brightbox_FirewallRule/_create/when_policy_exists/creates_the_rule_successfully.yml +24 -24
- data/spec/cassettes/Brightbox_FirewallRule/_destroy/when_rule_exists/destroys_a_rule.yml +20 -20
- data/spec/cassettes/Brightbox_FirewallRule/_find/when_rule_exists/can_display_the_result.yml +24 -24
- data/spec/cassettes/Brightbox_FirewallRule/_from_policy/when_policy_exists_with_a_rule/lists_all_rules.yml +32 -32
- data/spec/cassettes/Brightbox_Server/_destroy/when_server_exists/should_work.yml +20 -20
- data/spec/cassettes/Brightbox_Server/_find_all_/when_a_server_exists/should_print_server_list.yml +28 -28
- data/spec/cassettes/Brightbox_Server/_show/when_server_exists/shows_detailed_attributes_of_a_server.yml +32 -32
- data/spec/cassettes/Brightbox_Server/_shutdown/should_work.yml +32 -32
- data/spec/cassettes/Brightbox_Server/_start/should_work.yml +44 -44
- data/spec/cassettes/Brightbox_Server/_stop/should_work.yml +32 -32
- data/spec/cassettes/Brightbox_Server/_update/when_passing_new_group_membership/should_update_with_group.yml +40 -40
- data/spec/cassettes/Brightbox_ServerGroup/_find_all_/when_a_group_exists/list_server_groups.yml +24 -24
- data/spec/cassettes/Firewall_policies/update/when_the_policy_does_not_exist/prints_error_to_STDERR.yml +6 -6
- data/spec/cassettes/brightbox_accounts/list/_when_access_token_expired_/does_not_report_invalid_token_errors.yml +18 -18
- data/spec/cassettes/brightbox_accounts/list/_when_both_tokens_expired_/does_not_report_invalid_token_errors.yml +18 -18
- data/spec/cassettes/brightbox_accounts/list/_when_invalid_tokens_/does_not_report_invalid_token_errors.yml +18 -18
- data/spec/cassettes/brightbox_accounts/list/_when_no_tokens_/does_not_report_invalid_token_errors.yml +16 -16
- data/spec/cassettes/brightbox_accounts/list/_when_no_tokens_/reports_they_were_updated.yml +14 -14
- data/spec/cassettes/brightbox_accounts/list/_when_no_tokens_and_password_incorrect_/does_not_report_invalid_token_errors.yml +14 -14
- data/spec/cassettes/brightbox_accounts/list/_when_no_tokens_and_password_incorrect_/reports_unable_to_authenticate.yml +12 -12
- data/spec/cassettes/brightbox_accounts/list/does_not_error.yml +6 -6
- data/spec/cassettes/brightbox_cloudips/map/when_destination_is_a_server_ID/passes_the_interface_identifier_to_the_API.yml +542 -0
- data/spec/cassettes/brightbox_cloudips/map/when_destination_is_another_value/passes_the_identifier_to_the_API.yml +317 -0
- data/spec/cassettes/brightbox_config/client_add/when_adding_a_new_client/does_not_error.yml +154 -154
- data/spec/cassettes/brightbox_config/client_add/when_adding_a_new_client/sets_up_the_config.yml +154 -154
- data/spec/cassettes/brightbox_config/client_add/when_new_client_is_first_and_only_client/does_not_change_the_default_client.yml +154 -154
- data/spec/cassettes/brightbox_config/client_add/when_new_client_is_first_and_only_client/does_not_error.yml +154 -154
- data/spec/cassettes/brightbox_config/client_add/when_new_client_is_first_and_only_client/sets_this_as_the_default_client.yml +154 -154
- data/spec/cassettes/brightbox_config/client_add/when_new_client_is_first_and_only_client/sets_up_the_config.yml +154 -154
- data/spec/cassettes/brightbox_config/user_add/when_NO_config_file_on_disk/sets_up_the_config.yml +10 -10
- data/spec/cassettes/brightbox_config/user_add/when_a_default_client_is_already_set/does_not_change_the_default_client.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_application_details_in_config/does_not_error.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_application_details_in_config/sets_up_the_config.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_application_has_access_only_one_active_account/display_an_warning_about_preselected_default.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_application_has_access_only_one_active_account/does_not_error.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_application_has_access_only_one_active_account/selects_the_active_account_for_the_default.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_application_has_access_only_one_active_account/sets_up_the_config.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_application_has_access_to_multiple_accounts/display_an_warning_about_preselected_default.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_application_has_access_to_multiple_accounts/does_not_error.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_application_has_access_to_multiple_accounts/sets_up_the_config.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_new_client_is_first_and_only_client/does_not_error.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_new_client_is_first_and_only_client/does_not_prompt_to_rerun_the_command.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_new_client_is_first_and_only_client/requests_access_tokens.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_new_client_is_first_and_only_client/sets_this_as_the_default_client.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_new_client_is_first_and_only_client/sets_up_the_config.yml +10 -10
- data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments/does_not_error.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments/does_not_prompt_to_rerun_the_command.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments/requests_access_tokens.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments/sets_up_the_config.yml +6 -6
- data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments_and_api_url/does_not_error.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments_and_api_url/requests_access_tokens.yml +4 -4
- data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments_and_api_url/sets_up_the_config.yml +4 -4
- data/spec/cassettes/brightbox_database-servers/create/--allow-access_10_0_0_0/correctly_sends_API_parameters.yml +93 -0
- data/spec/cassettes/brightbox_database-servers/create/--allow-access_srv-12345_grp-12345/correctly_sends_API_parameters.yml +93 -0
- data/spec/cassettes/brightbox_database-servers/create/--engine_mysql/correctly_sends_API_parameters.yml +93 -0
- data/spec/cassettes/brightbox_database-servers/create/--engine_mysql_--engine-version_5_6/correctly_sends_API_parameters.yml +93 -0
- data/spec/cassettes/brightbox_database-servers/create/without_arguments/reports_the_new_admin_password.yml +93 -0
- data/spec/cassettes/brightbox_database-servers/create/without_arguments/reports_the_new_admin_username.yml +93 -0
- data/spec/cassettes/brightbox_database-servers/snapshot/when_database_server_active/correctly_sends_API_parameters.yml +181 -0
- data/spec/cassettes/brightbox_database-servers/snapshot/when_database_server_can_not_be_snapshotted/reports_an_error_to_the_user.yml +91 -0
- data/spec/cassettes/brightbox_database-snapshots/list/when_resources_are_available/does_not_output_to_stderr.yml +93 -0
- data/spec/cassettes/brightbox_database-snapshots/list/when_resources_are_available/outputs_table_details_to_stdout.yml +93 -0
- data/spec/cassettes/brightbox_database-snapshots/show/when_resource_exists/does_not_output_to_stderr.yml +93 -0
- data/spec/commands/accounts/list_spec.rb +1 -1
- data/spec/commands/cloudips/map_spec.rb +23 -4
- data/spec/commands/config/user_add_spec.rb +1 -1
- data/spec/commands/sql/instances/create_spec.rb +69 -0
- data/spec/commands/sql/instances/snapshot_spec.rb +36 -0
- data/spec/commands/sql/snapshots/list_spec.rb +29 -0
- data/spec/commands/sql/snapshots/show_spec.rb +29 -0
- data/spec/commands/sql/types/list_spec.rb +18 -0
- data/spec/spec_helper.rb +1 -3
- data/spec/support/vcr.rb +1 -1
- data/spec/unit/brightbox/api/conn_spec.rb +1 -1
- data/spec/unit/brightbox/bb_config/add_section_spec.rb +1 -1
- data/spec/unit/brightbox/bb_config/renew_tokens_spec.rb +1 -1
- data/spec/unit/brightbox/database_server_spec.rb +9 -0
- data/spec/unit/brightbox/database_snapshot_spec.rb +9 -0
- data/spec/unit/brightbox/database_type_spec.rb +9 -0
- data/spec/unit/brightbox/firewall_policy/create_spec.rb +1 -1
- data/spec/unit/brightbox/firewall_policy/destroy_spec.rb +1 -1
- data/spec/unit/brightbox/firewall_rule/create_spec.rb +1 -1
- data/spec/unit/brightbox/firewall_rule/destroy_spec.rb +1 -1
- data/spec/unit/brightbox/firewall_rule/find_spec.rb +1 -1
- data/spec/unit/brightbox/firewall_rule/from_policy_spec.rb +1 -1
- data/spec/unit/brightbox/server/destroy_spec.rb +1 -1
- data/spec/unit/brightbox/server/find_or_call_spec.rb +1 -1
- data/spec/unit/brightbox/server/shutdown_spec.rb +1 -1
- data/spec/unit/brightbox/server/start_spec.rb +1 -1
- data/spec/unit/brightbox/server/stop_spec.rb +1 -1
- data/spec/unit/brightbox/server/update_spec.rb +1 -1
- data/spec/unit/brightbox/server_group/find_spec.rb +1 -1
- data/spec/unit/brightbox/user_collaboration/get_for_account_spec.rb +3 -3
- metadata +160 -115
- data/lib/brightbox-cli/commands/groups-list.rb +0 -21
- data/lib/brightbox-cli/commands/users-list.rb +0 -25
|
@@ -16,7 +16,7 @@ http_interactions:
|
|
|
16
16
|
response:
|
|
17
17
|
status:
|
|
18
18
|
code: 401
|
|
19
|
-
message:
|
|
19
|
+
message:
|
|
20
20
|
headers:
|
|
21
21
|
WWW-Authenticate:
|
|
22
22
|
- OAuth error="expired_token"
|
|
@@ -38,7 +38,7 @@ http_interactions:
|
|
|
38
38
|
encoding: UTF-8
|
|
39
39
|
string: '{"error":"expired_token","error_description":"OAuth token presented
|
|
40
40
|
has expired and is no longer valid"}'
|
|
41
|
-
http_version:
|
|
41
|
+
http_version:
|
|
42
42
|
recorded_at: Wed, 28 Aug 2013 14:18:22 GMT
|
|
43
43
|
- request:
|
|
44
44
|
method: post
|
|
@@ -56,7 +56,7 @@ http_interactions:
|
|
|
56
56
|
response:
|
|
57
57
|
status:
|
|
58
58
|
code: 401
|
|
59
|
-
message:
|
|
59
|
+
message:
|
|
60
60
|
headers:
|
|
61
61
|
X-Frame-Options:
|
|
62
62
|
- sameorigin
|
|
@@ -83,7 +83,7 @@ http_interactions:
|
|
|
83
83
|
body:
|
|
84
84
|
encoding: UTF-8
|
|
85
85
|
string: '{"error":"invalid_client"}'
|
|
86
|
-
http_version:
|
|
86
|
+
http_version:
|
|
87
87
|
recorded_at: Wed, 28 Aug 2013 14:18:22 GMT
|
|
88
88
|
- request:
|
|
89
89
|
method: get
|
|
@@ -101,7 +101,7 @@ http_interactions:
|
|
|
101
101
|
response:
|
|
102
102
|
status:
|
|
103
103
|
code: 401
|
|
104
|
-
message:
|
|
104
|
+
message:
|
|
105
105
|
headers:
|
|
106
106
|
WWW-Authenticate:
|
|
107
107
|
- OAuth error="invalid_token"
|
|
@@ -123,7 +123,7 @@ http_interactions:
|
|
|
123
123
|
encoding: UTF-8
|
|
124
124
|
string: '{"error":"invalid_token","error_description":"The OAuth token can not
|
|
125
125
|
be found"}'
|
|
126
|
-
http_version:
|
|
126
|
+
http_version:
|
|
127
127
|
recorded_at: Wed, 28 Aug 2013 14:18:22 GMT
|
|
128
128
|
- request:
|
|
129
129
|
method: post
|
|
@@ -141,7 +141,7 @@ http_interactions:
|
|
|
141
141
|
response:
|
|
142
142
|
status:
|
|
143
143
|
code: 401
|
|
144
|
-
message:
|
|
144
|
+
message:
|
|
145
145
|
headers:
|
|
146
146
|
X-Frame-Options:
|
|
147
147
|
- sameorigin
|
|
@@ -168,7 +168,7 @@ http_interactions:
|
|
|
168
168
|
body:
|
|
169
169
|
encoding: UTF-8
|
|
170
170
|
string: '{"error":"invalid_client"}'
|
|
171
|
-
http_version:
|
|
171
|
+
http_version:
|
|
172
172
|
recorded_at: Wed, 28 Aug 2013 14:18:27 GMT
|
|
173
173
|
- request:
|
|
174
174
|
method: post
|
|
@@ -186,7 +186,7 @@ http_interactions:
|
|
|
186
186
|
response:
|
|
187
187
|
status:
|
|
188
188
|
code: 200
|
|
189
|
-
message:
|
|
189
|
+
message:
|
|
190
190
|
headers:
|
|
191
191
|
X-Frame-Options:
|
|
192
192
|
- sameorigin
|
|
@@ -213,7 +213,7 @@ http_interactions:
|
|
|
213
213
|
body:
|
|
214
214
|
encoding: UTF-8
|
|
215
215
|
string: '{"access_token":"0308fad90dfe9707232c4479bdb4dae470c54565","expires_in":7200,"refresh_token":"a704d91a3e687e9f248d4ee4c69abbba1c7a3a69"}'
|
|
216
|
-
http_version:
|
|
216
|
+
http_version:
|
|
217
217
|
recorded_at: Wed, 28 Aug 2013 14:18:27 GMT
|
|
218
218
|
- request:
|
|
219
219
|
method: post
|
|
@@ -231,7 +231,7 @@ http_interactions:
|
|
|
231
231
|
response:
|
|
232
232
|
status:
|
|
233
233
|
code: 200
|
|
234
|
-
message:
|
|
234
|
+
message:
|
|
235
235
|
headers:
|
|
236
236
|
X-Frame-Options:
|
|
237
237
|
- sameorigin
|
|
@@ -258,7 +258,7 @@ http_interactions:
|
|
|
258
258
|
body:
|
|
259
259
|
encoding: UTF-8
|
|
260
260
|
string: '{"access_token":"c307e3045674038c889b8f8356217a9482498682","expires_in":7200}'
|
|
261
|
-
http_version:
|
|
261
|
+
http_version:
|
|
262
262
|
recorded_at: Wed, 28 Aug 2013 14:19:48 GMT
|
|
263
263
|
- request:
|
|
264
264
|
method: post
|
|
@@ -276,7 +276,7 @@ http_interactions:
|
|
|
276
276
|
response:
|
|
277
277
|
status:
|
|
278
278
|
code: 400
|
|
279
|
-
message:
|
|
279
|
+
message:
|
|
280
280
|
headers:
|
|
281
281
|
X-Frame-Options:
|
|
282
282
|
- sameorigin
|
|
@@ -304,7 +304,7 @@ http_interactions:
|
|
|
304
304
|
provided is invalid, the client failed to authenticate, the client did not
|
|
305
305
|
include its credentials, provided multiple client credentials, or used unsupported
|
|
306
306
|
credentials type."}'
|
|
307
|
-
http_version:
|
|
307
|
+
http_version:
|
|
308
308
|
recorded_at: Wed, 28 Aug 2013 14:22:49 GMT
|
|
309
309
|
- request:
|
|
310
310
|
method: post
|
|
@@ -322,7 +322,7 @@ http_interactions:
|
|
|
322
322
|
response:
|
|
323
323
|
status:
|
|
324
324
|
code: 400
|
|
325
|
-
message:
|
|
325
|
+
message:
|
|
326
326
|
headers:
|
|
327
327
|
X-Frame-Options:
|
|
328
328
|
- sameorigin
|
|
@@ -348,7 +348,7 @@ http_interactions:
|
|
|
348
348
|
encoding: UTF-8
|
|
349
349
|
string: '{"error":"unauthorized_client","error_description":"The authenticated
|
|
350
350
|
client is not authorized to use the access grant type provided."}'
|
|
351
|
-
http_version:
|
|
351
|
+
http_version:
|
|
352
352
|
recorded_at: Wed, 18 Sep 2013 15:18:56 GMT
|
|
353
353
|
- request:
|
|
354
354
|
method: post
|
|
@@ -366,7 +366,7 @@ http_interactions:
|
|
|
366
366
|
response:
|
|
367
367
|
status:
|
|
368
368
|
code: 400
|
|
369
|
-
message:
|
|
369
|
+
message:
|
|
370
370
|
headers:
|
|
371
371
|
X-Frame-Options:
|
|
372
372
|
- sameorigin
|
|
@@ -392,6 +392,6 @@ http_interactions:
|
|
|
392
392
|
encoding: UTF-8
|
|
393
393
|
string: '{"error":"unauthorized_client","error_description":"The authenticated
|
|
394
394
|
client is not authorized to use the access grant type provided."}'
|
|
395
|
-
http_version:
|
|
395
|
+
http_version:
|
|
396
396
|
recorded_at: Wed, 18 Sep 2013 15:18:56 GMT
|
|
397
397
|
recorded_with: VCR 2.5.0
|
|
@@ -16,7 +16,7 @@ http_interactions:
|
|
|
16
16
|
response:
|
|
17
17
|
status:
|
|
18
18
|
code: 400
|
|
19
|
-
message:
|
|
19
|
+
message:
|
|
20
20
|
headers:
|
|
21
21
|
X-Frame-Options:
|
|
22
22
|
- sameorigin
|
|
@@ -42,7 +42,7 @@ http_interactions:
|
|
|
42
42
|
encoding: UTF-8
|
|
43
43
|
string: '{"error":"unauthorized_client","error_description":"The authenticated
|
|
44
44
|
client is not authorized to use the access grant type provided."}'
|
|
45
|
-
http_version:
|
|
45
|
+
http_version:
|
|
46
46
|
recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
|
|
47
47
|
- request:
|
|
48
48
|
method: get
|
|
@@ -60,7 +60,7 @@ http_interactions:
|
|
|
60
60
|
response:
|
|
61
61
|
status:
|
|
62
62
|
code: 401
|
|
63
|
-
message:
|
|
63
|
+
message:
|
|
64
64
|
headers:
|
|
65
65
|
WWW-Authenticate:
|
|
66
66
|
- OAuth error="invalid_token"
|
|
@@ -82,7 +82,7 @@ http_interactions:
|
|
|
82
82
|
encoding: UTF-8
|
|
83
83
|
string: '{"error":"invalid_token","error_description":"The OAuth token can not
|
|
84
84
|
be found"}'
|
|
85
|
-
http_version:
|
|
85
|
+
http_version:
|
|
86
86
|
recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
|
|
87
87
|
- request:
|
|
88
88
|
method: post
|
|
@@ -100,7 +100,7 @@ http_interactions:
|
|
|
100
100
|
response:
|
|
101
101
|
status:
|
|
102
102
|
code: 400
|
|
103
|
-
message:
|
|
103
|
+
message:
|
|
104
104
|
headers:
|
|
105
105
|
X-Frame-Options:
|
|
106
106
|
- sameorigin
|
|
@@ -126,7 +126,7 @@ http_interactions:
|
|
|
126
126
|
encoding: UTF-8
|
|
127
127
|
string: '{"error":"unauthorized_client","error_description":"The authenticated
|
|
128
128
|
client is not authorized to use the access grant type provided."}'
|
|
129
|
-
http_version:
|
|
129
|
+
http_version:
|
|
130
130
|
recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
|
|
131
131
|
- request:
|
|
132
132
|
method: get
|
|
@@ -144,7 +144,7 @@ http_interactions:
|
|
|
144
144
|
response:
|
|
145
145
|
status:
|
|
146
146
|
code: 401
|
|
147
|
-
message:
|
|
147
|
+
message:
|
|
148
148
|
headers:
|
|
149
149
|
WWW-Authenticate:
|
|
150
150
|
- OAuth error="invalid_token"
|
|
@@ -166,7 +166,7 @@ http_interactions:
|
|
|
166
166
|
encoding: UTF-8
|
|
167
167
|
string: '{"error":"invalid_token","error_description":"The OAuth token can not
|
|
168
168
|
be found"}'
|
|
169
|
-
http_version:
|
|
169
|
+
http_version:
|
|
170
170
|
recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
|
|
171
171
|
- request:
|
|
172
172
|
method: post
|
|
@@ -184,7 +184,7 @@ http_interactions:
|
|
|
184
184
|
response:
|
|
185
185
|
status:
|
|
186
186
|
code: 200
|
|
187
|
-
message:
|
|
187
|
+
message:
|
|
188
188
|
headers:
|
|
189
189
|
X-Frame-Options:
|
|
190
190
|
- sameorigin
|
|
@@ -211,7 +211,7 @@ http_interactions:
|
|
|
211
211
|
body:
|
|
212
212
|
encoding: UTF-8
|
|
213
213
|
string: '{"access_token":"cf9d63fa39bf6f7bedad62c461f020e92d8f1e44","expires_in":7200,"refresh_token":"7b574d091da700939a4cebcd1938ad4b547b1d00"}'
|
|
214
|
-
http_version:
|
|
214
|
+
http_version:
|
|
215
215
|
recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
|
|
216
216
|
- request:
|
|
217
217
|
method: post
|
|
@@ -229,7 +229,7 @@ http_interactions:
|
|
|
229
229
|
response:
|
|
230
230
|
status:
|
|
231
231
|
code: 200
|
|
232
|
-
message:
|
|
232
|
+
message:
|
|
233
233
|
headers:
|
|
234
234
|
X-Frame-Options:
|
|
235
235
|
- sameorigin
|
|
@@ -256,7 +256,7 @@ http_interactions:
|
|
|
256
256
|
body:
|
|
257
257
|
encoding: UTF-8
|
|
258
258
|
string: '{"access_token":"e75c77ba85740b2d572e15bbe75595ffc7f5814a","expires_in":7200}'
|
|
259
|
-
http_version:
|
|
259
|
+
http_version:
|
|
260
260
|
recorded_at: Tue, 27 Aug 2013 16:54:19 GMT
|
|
261
261
|
- request:
|
|
262
262
|
method: post
|
|
@@ -274,7 +274,7 @@ http_interactions:
|
|
|
274
274
|
response:
|
|
275
275
|
status:
|
|
276
276
|
code: 200
|
|
277
|
-
message:
|
|
277
|
+
message:
|
|
278
278
|
headers:
|
|
279
279
|
X-Frame-Options:
|
|
280
280
|
- sameorigin
|
|
@@ -301,7 +301,7 @@ http_interactions:
|
|
|
301
301
|
body:
|
|
302
302
|
encoding: UTF-8
|
|
303
303
|
string: '{"access_token":"7e65f560ecbca978f15131faa5071d120b9986f2","expires_in":7200}'
|
|
304
|
-
http_version:
|
|
304
|
+
http_version:
|
|
305
305
|
recorded_at: Wed, 28 Aug 2013 08:50:46 GMT
|
|
306
306
|
- request:
|
|
307
307
|
method: post
|
|
@@ -319,7 +319,7 @@ http_interactions:
|
|
|
319
319
|
response:
|
|
320
320
|
status:
|
|
321
321
|
code: 400
|
|
322
|
-
message:
|
|
322
|
+
message:
|
|
323
323
|
headers:
|
|
324
324
|
X-Frame-Options:
|
|
325
325
|
- sameorigin
|
|
@@ -347,6 +347,6 @@ http_interactions:
|
|
|
347
347
|
is invalid, expired, or revoked (e.g. invalid assertion, expired authorization
|
|
348
348
|
token, bad end-user password credentials, or mismatching authorization code
|
|
349
349
|
and redirection URI)."}'
|
|
350
|
-
http_version:
|
|
350
|
+
http_version:
|
|
351
351
|
recorded_at: Wed, 18 Sep 2013 15:15:36 GMT
|
|
352
352
|
recorded_with: VCR 2.5.0
|
|
@@ -16,7 +16,7 @@ http_interactions:
|
|
|
16
16
|
response:
|
|
17
17
|
status:
|
|
18
18
|
code: 400
|
|
19
|
-
message:
|
|
19
|
+
message:
|
|
20
20
|
headers:
|
|
21
21
|
X-Frame-Options:
|
|
22
22
|
- sameorigin
|
|
@@ -42,7 +42,7 @@ http_interactions:
|
|
|
42
42
|
encoding: UTF-8
|
|
43
43
|
string: '{"error":"unauthorized_client","error_description":"The authenticated
|
|
44
44
|
client is not authorized to use the access grant type provided."}'
|
|
45
|
-
http_version:
|
|
45
|
+
http_version:
|
|
46
46
|
recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
|
|
47
47
|
- request:
|
|
48
48
|
method: get
|
|
@@ -60,7 +60,7 @@ http_interactions:
|
|
|
60
60
|
response:
|
|
61
61
|
status:
|
|
62
62
|
code: 401
|
|
63
|
-
message:
|
|
63
|
+
message:
|
|
64
64
|
headers:
|
|
65
65
|
WWW-Authenticate:
|
|
66
66
|
- OAuth error="invalid_token"
|
|
@@ -82,7 +82,7 @@ http_interactions:
|
|
|
82
82
|
encoding: UTF-8
|
|
83
83
|
string: '{"error":"invalid_token","error_description":"The OAuth token can not
|
|
84
84
|
be found"}'
|
|
85
|
-
http_version:
|
|
85
|
+
http_version:
|
|
86
86
|
recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
|
|
87
87
|
- request:
|
|
88
88
|
method: post
|
|
@@ -100,7 +100,7 @@ http_interactions:
|
|
|
100
100
|
response:
|
|
101
101
|
status:
|
|
102
102
|
code: 400
|
|
103
|
-
message:
|
|
103
|
+
message:
|
|
104
104
|
headers:
|
|
105
105
|
X-Frame-Options:
|
|
106
106
|
- sameorigin
|
|
@@ -126,7 +126,7 @@ http_interactions:
|
|
|
126
126
|
encoding: UTF-8
|
|
127
127
|
string: '{"error":"unauthorized_client","error_description":"The authenticated
|
|
128
128
|
client is not authorized to use the access grant type provided."}'
|
|
129
|
-
http_version:
|
|
129
|
+
http_version:
|
|
130
130
|
recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
|
|
131
131
|
- request:
|
|
132
132
|
method: get
|
|
@@ -144,7 +144,7 @@ http_interactions:
|
|
|
144
144
|
response:
|
|
145
145
|
status:
|
|
146
146
|
code: 401
|
|
147
|
-
message:
|
|
147
|
+
message:
|
|
148
148
|
headers:
|
|
149
149
|
WWW-Authenticate:
|
|
150
150
|
- OAuth error="invalid_token"
|
|
@@ -166,7 +166,7 @@ http_interactions:
|
|
|
166
166
|
encoding: UTF-8
|
|
167
167
|
string: '{"error":"invalid_token","error_description":"The OAuth token can not
|
|
168
168
|
be found"}'
|
|
169
|
-
http_version:
|
|
169
|
+
http_version:
|
|
170
170
|
recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
|
|
171
171
|
- request:
|
|
172
172
|
method: post
|
|
@@ -184,7 +184,7 @@ http_interactions:
|
|
|
184
184
|
response:
|
|
185
185
|
status:
|
|
186
186
|
code: 200
|
|
187
|
-
message:
|
|
187
|
+
message:
|
|
188
188
|
headers:
|
|
189
189
|
X-Frame-Options:
|
|
190
190
|
- sameorigin
|
|
@@ -211,7 +211,7 @@ http_interactions:
|
|
|
211
211
|
body:
|
|
212
212
|
encoding: UTF-8
|
|
213
213
|
string: '{"access_token":"cf9d63fa39bf6f7bedad62c461f020e92d8f1e44","expires_in":7200,"refresh_token":"7b574d091da700939a4cebcd1938ad4b547b1d00"}'
|
|
214
|
-
http_version:
|
|
214
|
+
http_version:
|
|
215
215
|
recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
|
|
216
216
|
- request:
|
|
217
217
|
method: post
|
|
@@ -229,7 +229,7 @@ http_interactions:
|
|
|
229
229
|
response:
|
|
230
230
|
status:
|
|
231
231
|
code: 200
|
|
232
|
-
message:
|
|
232
|
+
message:
|
|
233
233
|
headers:
|
|
234
234
|
X-Frame-Options:
|
|
235
235
|
- sameorigin
|
|
@@ -256,7 +256,7 @@ http_interactions:
|
|
|
256
256
|
body:
|
|
257
257
|
encoding: UTF-8
|
|
258
258
|
string: '{"access_token":"e75c77ba85740b2d572e15bbe75595ffc7f5814a","expires_in":7200}'
|
|
259
|
-
http_version:
|
|
259
|
+
http_version:
|
|
260
260
|
recorded_at: Tue, 27 Aug 2013 16:54:19 GMT
|
|
261
261
|
- request:
|
|
262
262
|
method: post
|
|
@@ -274,7 +274,7 @@ http_interactions:
|
|
|
274
274
|
response:
|
|
275
275
|
status:
|
|
276
276
|
code: 200
|
|
277
|
-
message:
|
|
277
|
+
message:
|
|
278
278
|
headers:
|
|
279
279
|
X-Frame-Options:
|
|
280
280
|
- sameorigin
|
|
@@ -301,6 +301,6 @@ http_interactions:
|
|
|
301
301
|
body:
|
|
302
302
|
encoding: UTF-8
|
|
303
303
|
string: '{"access_token":"7e65f560ecbca978f15131faa5071d120b9986f2","expires_in":7200}'
|
|
304
|
-
http_version:
|
|
304
|
+
http_version:
|
|
305
305
|
recorded_at: Wed, 28 Aug 2013 08:50:46 GMT
|
|
306
306
|
recorded_with: VCR 2.5.0
|
|
@@ -16,7 +16,7 @@ http_interactions:
|
|
|
16
16
|
response:
|
|
17
17
|
status:
|
|
18
18
|
code: 400
|
|
19
|
-
message:
|
|
19
|
+
message:
|
|
20
20
|
headers:
|
|
21
21
|
X-Frame-Options:
|
|
22
22
|
- sameorigin
|
|
@@ -42,7 +42,7 @@ http_interactions:
|
|
|
42
42
|
encoding: UTF-8
|
|
43
43
|
string: '{"error":"unauthorized_client","error_description":"The authenticated
|
|
44
44
|
client is not authorized to use the access grant type provided."}'
|
|
45
|
-
http_version:
|
|
45
|
+
http_version:
|
|
46
46
|
recorded_at: Wed, 18 Sep 2013 15:15:36 GMT
|
|
47
47
|
- request:
|
|
48
48
|
method: get
|
|
@@ -60,7 +60,7 @@ http_interactions:
|
|
|
60
60
|
response:
|
|
61
61
|
status:
|
|
62
62
|
code: 401
|
|
63
|
-
message:
|
|
63
|
+
message:
|
|
64
64
|
headers:
|
|
65
65
|
WWW-Authenticate:
|
|
66
66
|
- OAuth error="invalid_token"
|
|
@@ -82,7 +82,7 @@ http_interactions:
|
|
|
82
82
|
encoding: UTF-8
|
|
83
83
|
string: '{"error":"invalid_token","error_description":"The OAuth token can not
|
|
84
84
|
be found"}'
|
|
85
|
-
http_version:
|
|
85
|
+
http_version:
|
|
86
86
|
recorded_at: Wed, 18 Sep 2013 15:15:37 GMT
|
|
87
87
|
- request:
|
|
88
88
|
method: post
|
|
@@ -100,7 +100,7 @@ http_interactions:
|
|
|
100
100
|
response:
|
|
101
101
|
status:
|
|
102
102
|
code: 400
|
|
103
|
-
message:
|
|
103
|
+
message:
|
|
104
104
|
headers:
|
|
105
105
|
X-Frame-Options:
|
|
106
106
|
- sameorigin
|
|
@@ -126,7 +126,7 @@ http_interactions:
|
|
|
126
126
|
encoding: UTF-8
|
|
127
127
|
string: '{"error":"unauthorized_client","error_description":"The authenticated
|
|
128
128
|
client is not authorized to use the access grant type provided."}'
|
|
129
|
-
http_version:
|
|
129
|
+
http_version:
|
|
130
130
|
recorded_at: Wed, 18 Sep 2013 15:15:37 GMT
|
|
131
131
|
- request:
|
|
132
132
|
method: get
|
|
@@ -144,7 +144,7 @@ http_interactions:
|
|
|
144
144
|
response:
|
|
145
145
|
status:
|
|
146
146
|
code: 401
|
|
147
|
-
message:
|
|
147
|
+
message:
|
|
148
148
|
headers:
|
|
149
149
|
WWW-Authenticate:
|
|
150
150
|
- OAuth error="invalid_token"
|
|
@@ -166,7 +166,7 @@ http_interactions:
|
|
|
166
166
|
encoding: UTF-8
|
|
167
167
|
string: '{"error":"invalid_token","error_description":"The OAuth token can not
|
|
168
168
|
be found"}'
|
|
169
|
-
http_version:
|
|
169
|
+
http_version:
|
|
170
170
|
recorded_at: Wed, 18 Sep 2013 15:15:37 GMT
|
|
171
171
|
- request:
|
|
172
172
|
method: post
|
|
@@ -184,7 +184,7 @@ http_interactions:
|
|
|
184
184
|
response:
|
|
185
185
|
status:
|
|
186
186
|
code: 401
|
|
187
|
-
message:
|
|
187
|
+
message:
|
|
188
188
|
headers:
|
|
189
189
|
X-Frame-Options:
|
|
190
190
|
- sameorigin
|
|
@@ -211,7 +211,7 @@ http_interactions:
|
|
|
211
211
|
body:
|
|
212
212
|
encoding: UTF-8
|
|
213
213
|
string: '{"error":"invalid_client"}'
|
|
214
|
-
http_version:
|
|
214
|
+
http_version:
|
|
215
215
|
recorded_at: Wed, 18 Sep 2013 15:15:37 GMT
|
|
216
216
|
- request:
|
|
217
217
|
method: post
|
|
@@ -229,7 +229,7 @@ http_interactions:
|
|
|
229
229
|
response:
|
|
230
230
|
status:
|
|
231
231
|
code: 200
|
|
232
|
-
message:
|
|
232
|
+
message:
|
|
233
233
|
headers:
|
|
234
234
|
X-Frame-Options:
|
|
235
235
|
- sameorigin
|
|
@@ -256,7 +256,7 @@ http_interactions:
|
|
|
256
256
|
body:
|
|
257
257
|
encoding: UTF-8
|
|
258
258
|
string: '{"access_token":"d2b4fefbc31070802d11171eacb8f8529a9c275c","expires_in":7200}'
|
|
259
|
-
http_version:
|
|
259
|
+
http_version:
|
|
260
260
|
recorded_at: Wed, 18 Sep 2013 15:17:33 GMT
|
|
261
261
|
- request:
|
|
262
262
|
method: post
|
|
@@ -274,7 +274,7 @@ http_interactions:
|
|
|
274
274
|
response:
|
|
275
275
|
status:
|
|
276
276
|
code: 200
|
|
277
|
-
message:
|
|
277
|
+
message:
|
|
278
278
|
headers:
|
|
279
279
|
X-Frame-Options:
|
|
280
280
|
- sameorigin
|
|
@@ -301,6 +301,6 @@ http_interactions:
|
|
|
301
301
|
body:
|
|
302
302
|
encoding: UTF-8
|
|
303
303
|
string: '{"access_token":"41e1f8110c58d9ef779ad0d402d49a9a01c78ab5","expires_in":7200}'
|
|
304
|
-
http_version:
|
|
304
|
+
http_version:
|
|
305
305
|
recorded_at: Wed, 18 Sep 2013 15:17:33 GMT
|
|
306
306
|
recorded_with: VCR 2.5.0
|