bugsnag-api 2.0.1 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +2 -0
- data/.rubocop_todo.yml +271 -0
- data/.travis.yml +6 -3
- data/CHANGELOG.md +7 -0
- data/bugsnag-api.gemspec +1 -0
- data/lib/bugsnag/api/client.rb +12 -0
- data/lib/bugsnag/api/client/comments.rb +1 -1
- data/lib/bugsnag/api/client/errors.rb +3 -1
- data/lib/bugsnag/api/client/trends.rb +8 -4
- data/lib/bugsnag/api/configuration.rb +1 -1
- data/lib/bugsnag/api/version.rb +1 -1
- data/spec/bugsnag/api/client_spec.rb +69 -7
- data/spec/bugsnag/api_spec.rb +2 -0
- data/spec/cassettes/Bugsnag_Api_Client/_get/handles_query_params.yml +13 -21
- data/spec/cassettes/Bugsnag_Api_Client/_last_response/caches_the_last_agent_response.yml +13 -21
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/_invitecollaborator/creates_and_returns_a_collaborator.yml +14 -26
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/_invitecollaborator/invites_multiple_collaborators.yml +14 -26
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_collaborator/returns_a_collaborator.yml +29 -53
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_collaborators/returns_a_list_of_all_organization_collaborators.yml +30 -55
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_collaborators/returns_a_list_of_all_project_collaborators.yml +30 -55
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_collaborators/throws_an_argument_error_if_neither_org_id_or_project_id_are_provided.yml +14 -26
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_delete_collaborator/deletes_a_collaborator.yml +14 -26
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_update_collaborator_permissions/updates_and_returns_the_collaborator.yml +29 -53
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_view_collaborator_projects/returns_a_list_of_projects_belonging_to_the_collaborator.yml +49 -55
- data/spec/cassettes/Bugsnag_Api_Client_Comments/_create_comment/creates_a_comment_on_the_error.yml +17 -29
- data/spec/cassettes/Bugsnag_Api_Client_Comments/given_a_comment_has_been_created/_comment/retrieves_the_comment_specified.yml +32 -56
- data/spec/cassettes/Bugsnag_Api_Client_Comments/given_a_comment_has_been_created/_comments/retrieves_all_comments_on_an_error.yml +33 -57
- data/spec/cassettes/Bugsnag_Api_Client_Comments/given_a_comment_has_been_created/_delete_comment/deletes_the_comment_and_returns_true.yml +17 -29
- data/spec/cassettes/Bugsnag_Api_Client_Comments/given_a_comment_has_been_created/_update_comment/updates_the_message_on_a_comment.yml +32 -56
- data/spec/cassettes/Bugsnag_Api_Client_CurrentUser/_list_organizations/when_using_auth_token/returns_the_organization_the_auth_token_belongs_to.yml +14 -27
- data/spec/cassettes/Bugsnag_Api_Client_CurrentUser/_list_organizations/when_using_user_credentials/returns_users_organizations.yml +17 -31
- data/spec/cassettes/Bugsnag_Api_Client_CurrentUser/_list_projects/when_using_auth_token/lists_current_user_s_projects_in_the_organization.yml +34 -28
- data/spec/cassettes/Bugsnag_Api_Client_CurrentUser/_list_projects/when_using_user_credentials/lists_current_user_s_projects_in_the_organization.yml +37 -32
- data/spec/cassettes/Bugsnag_Api_Client_Errors/_error/returns_a_single_error.yml +14 -28
- data/spec/cassettes/Bugsnag_Api_Client_Errors/_errors/returns_errors_on_the_project.yml +16 -30
- data/spec/cassettes/Bugsnag_Api_Client_Errors/_update_errors/updates_and_returns_the_updated_errors.yml +13 -25
- data/spec/cassettes/Bugsnag_Api_Client_Events/_error_events/lists_all_error_events.yml +19 -30
- data/spec/cassettes/Bugsnag_Api_Client_Events/_event/returns_the_specified_event.yml +16 -199
- data/spec/cassettes/Bugsnag_Api_Client_Events/_events/returns_the_a_list_of_project_errors.yml +19 -30
- data/spec/cassettes/Bugsnag_Api_Client_Events/_latest_event/returns_the_last_event_on_an_error.yml +16 -199
- data/spec/cassettes/Bugsnag_Api_Client_Organizations/_create_organization/creates_a_new_organization.yml +17 -30
- data/spec/cassettes/Bugsnag_Api_Client_Organizations/with_organization/_delete_organization/deletes_the_organization.yml +32 -58
- data/spec/cassettes/Bugsnag_Api_Client_Organizations/with_organization/_organization/returns_the_requested_organization.yml +35 -61
- data/spec/cassettes/Bugsnag_Api_Client_Organizations/with_organization/_update_organization/updates_and_returns_the_organization.yml +35 -61
- data/spec/cassettes/Bugsnag_Api_Client_Projects/_create_project/creates_a_new_project.yml +14 -26
- data/spec/cassettes/Bugsnag_Api_Client_Projects/given_a_project/_delete_project/deletes_the_project.yml +26 -50
- data/spec/cassettes/Bugsnag_Api_Client_Projects/given_a_project/_project/returns_the_requested_project.yml +29 -53
- data/spec/cassettes/Bugsnag_Api_Client_Projects/given_a_project/_regenerate_api_key/removes_the_current_api_key_and_replaces_it_with_a_new_api_key.yml +29 -53
- data/spec/cassettes/Bugsnag_Api_Client_Projects/given_a_project/_update_project/updates_and_returns_the_project.yml +29 -53
- data/spec/cassettes/Bugsnag_Api_Client_Trends/_trends_buckets/returns_a_list_of_error_trends_in_bucket_form.yml +14 -26
- data/spec/cassettes/Bugsnag_Api_Client_Trends/_trends_buckets/returns_a_list_of_project_trends_in_bucket_form.yml +14 -26
- data/spec/cassettes/Bugsnag_Api_Client_Trends/_trends_resolution/returns_a_list_of_project_trends_in_resolution_form.yml +14 -26
- data/spec/cassettes/Bugsnag_Api_Client_Trends/_trends_resolution/returns_a_list_of_trends_in_resolution_form.yml +14 -26
- data/spec/spec_helper.rb +3 -3
- metadata +18 -2
@@ -8,11 +8,13 @@ http_interactions:
|
|
8
8
|
string: '{"project_ids":["BUGSNAG_PROJECT_ID"],"email":"BUGSNAG_COLLABORATOR_EMAIL"}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Bugsnag API Ruby Gem
|
11
|
+
- Bugsnag API Ruby Gem 2.0.1
|
12
12
|
Content-Type:
|
13
13
|
- application/json
|
14
14
|
X-Version:
|
15
15
|
- '2'
|
16
|
+
X-Bugsnag-Api:
|
17
|
+
- 'true'
|
16
18
|
Authorization:
|
17
19
|
- token BUGSNAG_AUTH_TOKEN
|
18
20
|
Accept-Encoding:
|
@@ -24,31 +26,25 @@ http_interactions:
|
|
24
26
|
code: 200
|
25
27
|
message: OK
|
26
28
|
headers:
|
27
|
-
Server:
|
28
|
-
- nginx
|
29
|
-
Date:
|
30
|
-
- Mon, 09 Oct 2017 14:25:28 GMT
|
31
29
|
Content-Type:
|
32
30
|
- application/json; charset=utf-8
|
33
31
|
Etag:
|
34
|
-
- W/"
|
32
|
+
- W/"255d0577e6c8680d496ee762c76194b3"
|
35
33
|
Cache-Control:
|
36
34
|
- max-age=0, private, must-revalidate
|
37
35
|
X-Request-Id:
|
38
|
-
-
|
36
|
+
- e2ca3886-5b30-4f9c-88b0-ea8d61191e1e
|
39
37
|
X-Runtime:
|
40
|
-
- '0.
|
38
|
+
- '0.377968'
|
41
39
|
Vary:
|
42
40
|
- Origin
|
43
|
-
X-
|
44
|
-
-
|
45
|
-
X-Ratelimit-Remaining:
|
46
|
-
- '5'
|
41
|
+
X-Rack-Cors:
|
42
|
+
- miss; no-origin
|
47
43
|
Content-Security-Policy:
|
48
44
|
- 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
|
49
|
-
connect-src ''self'' https://api.bugsnag.com https
|
50
|
-
https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
|
51
|
-
''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
|
45
|
+
connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
|
46
|
+
https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
|
47
|
+
img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
|
52
48
|
script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
|
53
49
|
https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
|
54
50
|
https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
|
@@ -62,34 +58,28 @@ http_interactions:
|
|
62
58
|
- none
|
63
59
|
X-Xss-Protection:
|
64
60
|
- 1; mode=block
|
65
|
-
X-Robots-Tag:
|
66
|
-
- noindex, nofollow
|
67
|
-
Strict-Transport-Security:
|
68
|
-
- max-age=31536000
|
69
|
-
Via:
|
70
|
-
- 1.1 google
|
71
|
-
Alt-Svc:
|
72
|
-
- clear
|
73
61
|
Transfer-Encoding:
|
74
62
|
- chunked
|
75
63
|
body:
|
76
|
-
encoding:
|
77
|
-
string: '{"id":"
|
64
|
+
encoding: UTF-8
|
65
|
+
string: '{"id":"5a2fbf42d1befa003981d597","name":null,"email":"BUGSNAG_COLLABORATOR_EMAIL","two_factor_enabled":false,"two_factor_enabled_on":null,"BUGSNAG_PASSWORD_updated_on":"2017-12-12T11:36:34.635Z","show_time_in_utc":true,"projects_url":"https://api.bugsnag.com/users/5a2fbf42d1befa003981d597/projects","heroku":false,"recovery_codes_remaining":0,"is_admin":true,"pending_invitation":true,"last_request_at":null,"project_ids":["5a1589f1d1befa47553ffd64","5a1589f1d1befa47553ffd65","5a1589f1d1befa47553ffd66","5a1589f1d1befa47553ffd67","5a1589f1d1befa47553ffd68","5a1589f1d1befa47553ffd69","5a1589f1d1befa47553ffd6a","5a1589f1d1befa47553ffd6b","5a1589f1d1befa47553ffd6c","5a1589f1d1befa47553ffd6d","5a1589f1d1befa47553ffd6e","5a1589f1d1befa47553ffd6f","5a1589f2d1befa47553ffd70","5a1589f2d1befa47553ffd71","5a1589f2d1befa47553ffd72","5a1589f2d1befa47553ffd73","5a159805d1befa1899baacc2","5a159806d1befa1899baacc3","5a159806d1befa1899baacc4","5a159806d1befa1899baacc5","5a159806d1befa1899baacc6","BUGSNAG_PROJECT_ID","5a2fbf1fd1befa003981d594","5a2fbf20d1befa001781d582","5a2fbf21d1befa002881d592","5a2fbf22d1befa001781d585","5a2fc37bd1befa003981d5b1","5a2fc37dd1befa002881d59d","5a2fc37ed1befa003981d5b6","5a2fc37fd1befa003981d5b9"],"paid_for":false}'
|
78
66
|
http_version:
|
79
|
-
recorded_at:
|
67
|
+
recorded_at: Tue, 12 Dec 2017 11:54:44 GMT
|
80
68
|
- request:
|
81
69
|
method: patch
|
82
|
-
uri: https://api.bugsnag.com/organizations/BUGSNAG_ORG_ID/collaborators/
|
70
|
+
uri: https://api.bugsnag.com/organizations/BUGSNAG_ORG_ID/collaborators/5a2fbf42d1befa003981d597
|
83
71
|
body:
|
84
72
|
encoding: UTF-8
|
85
73
|
string: '{"admin":true}'
|
86
74
|
headers:
|
87
75
|
User-Agent:
|
88
|
-
- Bugsnag API Ruby Gem
|
76
|
+
- Bugsnag API Ruby Gem 2.0.1
|
89
77
|
Content-Type:
|
90
78
|
- application/json
|
91
79
|
X-Version:
|
92
80
|
- '2'
|
81
|
+
X-Bugsnag-Api:
|
82
|
+
- 'true'
|
93
83
|
Authorization:
|
94
84
|
- token BUGSNAG_AUTH_TOKEN
|
95
85
|
Accept-Encoding:
|
@@ -101,31 +91,25 @@ http_interactions:
|
|
101
91
|
code: 200
|
102
92
|
message: OK
|
103
93
|
headers:
|
104
|
-
Server:
|
105
|
-
- nginx
|
106
|
-
Date:
|
107
|
-
- Mon, 09 Oct 2017 14:25:29 GMT
|
108
94
|
Content-Type:
|
109
95
|
- application/json; charset=utf-8
|
110
96
|
Etag:
|
111
|
-
- W/"
|
97
|
+
- W/"255d0577e6c8680d496ee762c76194b3"
|
112
98
|
Cache-Control:
|
113
99
|
- max-age=0, private, must-revalidate
|
114
100
|
X-Request-Id:
|
115
|
-
-
|
101
|
+
- 85866b6a-51ef-494a-9c09-6ddc0ee4a29b
|
116
102
|
X-Runtime:
|
117
|
-
- '0.
|
103
|
+
- '0.580473'
|
118
104
|
Vary:
|
119
105
|
- Origin
|
120
|
-
X-
|
121
|
-
-
|
122
|
-
X-Ratelimit-Remaining:
|
123
|
-
- '4'
|
106
|
+
X-Rack-Cors:
|
107
|
+
- miss; no-origin
|
124
108
|
Content-Security-Policy:
|
125
109
|
- 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
|
126
|
-
connect-src ''self'' https://api.bugsnag.com https
|
127
|
-
https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
|
128
|
-
''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
|
110
|
+
connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
|
111
|
+
https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
|
112
|
+
img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
|
129
113
|
script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
|
130
114
|
https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
|
131
115
|
https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
|
@@ -139,19 +123,11 @@ http_interactions:
|
|
139
123
|
- none
|
140
124
|
X-Xss-Protection:
|
141
125
|
- 1; mode=block
|
142
|
-
X-Robots-Tag:
|
143
|
-
- noindex, nofollow
|
144
|
-
Strict-Transport-Security:
|
145
|
-
- max-age=31536000
|
146
|
-
Via:
|
147
|
-
- 1.1 google
|
148
|
-
Alt-Svc:
|
149
|
-
- clear
|
150
126
|
Transfer-Encoding:
|
151
127
|
- chunked
|
152
128
|
body:
|
153
|
-
encoding:
|
154
|
-
string: '{"id":"
|
129
|
+
encoding: UTF-8
|
130
|
+
string: '{"id":"5a2fbf42d1befa003981d597","name":null,"email":"BUGSNAG_COLLABORATOR_EMAIL","two_factor_enabled":false,"two_factor_enabled_on":null,"BUGSNAG_PASSWORD_updated_on":"2017-12-12T11:36:34.635Z","show_time_in_utc":true,"projects_url":"https://api.bugsnag.com/users/5a2fbf42d1befa003981d597/projects","heroku":false,"recovery_codes_remaining":0,"is_admin":true,"pending_invitation":true,"last_request_at":null,"project_ids":["5a1589f1d1befa47553ffd64","5a1589f1d1befa47553ffd65","5a1589f1d1befa47553ffd66","5a1589f1d1befa47553ffd67","5a1589f1d1befa47553ffd68","5a1589f1d1befa47553ffd69","5a1589f1d1befa47553ffd6a","5a1589f1d1befa47553ffd6b","5a1589f1d1befa47553ffd6c","5a1589f1d1befa47553ffd6d","5a1589f1d1befa47553ffd6e","5a1589f1d1befa47553ffd6f","5a1589f2d1befa47553ffd70","5a1589f2d1befa47553ffd71","5a1589f2d1befa47553ffd72","5a1589f2d1befa47553ffd73","5a159805d1befa1899baacc2","5a159806d1befa1899baacc3","5a159806d1befa1899baacc4","5a159806d1befa1899baacc5","5a159806d1befa1899baacc6","BUGSNAG_PROJECT_ID","5a2fbf1fd1befa003981d594","5a2fbf20d1befa001781d582","5a2fbf21d1befa002881d592","5a2fbf22d1befa001781d585","5a2fc37bd1befa003981d5b1","5a2fc37dd1befa002881d59d","5a2fc37ed1befa003981d5b6","5a2fc37fd1befa003981d5b9"],"paid_for":false}'
|
155
131
|
http_version:
|
156
|
-
recorded_at:
|
132
|
+
recorded_at: Tue, 12 Dec 2017 11:54:45 GMT
|
157
133
|
recorded_with: VCR 2.9.3
|
@@ -8,11 +8,13 @@ http_interactions:
|
|
8
8
|
string: '{"project_ids":["BUGSNAG_PROJECT_ID"],"email":"BUGSNAG_COLLABORATOR_EMAIL"}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Bugsnag API Ruby Gem
|
11
|
+
- Bugsnag API Ruby Gem 2.0.1
|
12
12
|
Content-Type:
|
13
13
|
- application/json
|
14
14
|
X-Version:
|
15
15
|
- '2'
|
16
|
+
X-Bugsnag-Api:
|
17
|
+
- 'true'
|
16
18
|
Authorization:
|
17
19
|
- token BUGSNAG_AUTH_TOKEN
|
18
20
|
Accept-Encoding:
|
@@ -24,31 +26,25 @@ http_interactions:
|
|
24
26
|
code: 200
|
25
27
|
message: OK
|
26
28
|
headers:
|
27
|
-
Server:
|
28
|
-
- nginx
|
29
|
-
Date:
|
30
|
-
- Mon, 09 Oct 2017 14:26:58 GMT
|
31
29
|
Content-Type:
|
32
30
|
- application/json; charset=utf-8
|
33
31
|
Etag:
|
34
|
-
- W/"
|
32
|
+
- W/"255d0577e6c8680d496ee762c76194b3"
|
35
33
|
Cache-Control:
|
36
34
|
- max-age=0, private, must-revalidate
|
37
35
|
X-Request-Id:
|
38
|
-
-
|
36
|
+
- 1cebade7-c5b3-48d5-b5c0-852f698587de
|
39
37
|
X-Runtime:
|
40
|
-
- '0.
|
38
|
+
- '0.429582'
|
41
39
|
Vary:
|
42
40
|
- Origin
|
43
|
-
X-
|
44
|
-
-
|
45
|
-
X-Ratelimit-Remaining:
|
46
|
-
- '2'
|
41
|
+
X-Rack-Cors:
|
42
|
+
- miss; no-origin
|
47
43
|
Content-Security-Policy:
|
48
44
|
- 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
|
49
|
-
connect-src ''self'' https://api.bugsnag.com https
|
50
|
-
https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
|
51
|
-
''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
|
45
|
+
connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
|
46
|
+
https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
|
47
|
+
img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
|
52
48
|
script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
|
53
49
|
https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
|
54
50
|
https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
|
@@ -62,34 +58,28 @@ http_interactions:
|
|
62
58
|
- none
|
63
59
|
X-Xss-Protection:
|
64
60
|
- 1; mode=block
|
65
|
-
X-Robots-Tag:
|
66
|
-
- noindex, nofollow
|
67
|
-
Strict-Transport-Security:
|
68
|
-
- max-age=31536000
|
69
|
-
Via:
|
70
|
-
- 1.1 google
|
71
|
-
Alt-Svc:
|
72
|
-
- clear
|
73
61
|
Transfer-Encoding:
|
74
62
|
- chunked
|
75
63
|
body:
|
76
|
-
encoding:
|
77
|
-
string: '{"id":"
|
64
|
+
encoding: UTF-8
|
65
|
+
string: '{"id":"5a2fbf42d1befa003981d597","name":null,"email":"BUGSNAG_COLLABORATOR_EMAIL","two_factor_enabled":false,"two_factor_enabled_on":null,"BUGSNAG_PASSWORD_updated_on":"2017-12-12T11:36:34.635Z","show_time_in_utc":true,"projects_url":"https://api.bugsnag.com/users/5a2fbf42d1befa003981d597/projects","heroku":false,"recovery_codes_remaining":0,"is_admin":true,"pending_invitation":true,"last_request_at":null,"project_ids":["5a1589f1d1befa47553ffd64","5a1589f1d1befa47553ffd65","5a1589f1d1befa47553ffd66","5a1589f1d1befa47553ffd67","5a1589f1d1befa47553ffd68","5a1589f1d1befa47553ffd69","5a1589f1d1befa47553ffd6a","5a1589f1d1befa47553ffd6b","5a1589f1d1befa47553ffd6c","5a1589f1d1befa47553ffd6d","5a1589f1d1befa47553ffd6e","5a1589f1d1befa47553ffd6f","5a1589f2d1befa47553ffd70","5a1589f2d1befa47553ffd71","5a1589f2d1befa47553ffd72","5a1589f2d1befa47553ffd73","5a159805d1befa1899baacc2","5a159806d1befa1899baacc3","5a159806d1befa1899baacc4","5a159806d1befa1899baacc5","5a159806d1befa1899baacc6","BUGSNAG_PROJECT_ID","5a2fbf1fd1befa003981d594","5a2fbf20d1befa001781d582","5a2fbf21d1befa002881d592","5a2fbf22d1befa001781d585","5a2fc37bd1befa003981d5b1","5a2fc37dd1befa002881d59d","5a2fc37ed1befa003981d5b6","5a2fc37fd1befa003981d5b9"],"paid_for":false}'
|
78
66
|
http_version:
|
79
|
-
recorded_at:
|
67
|
+
recorded_at: Tue, 12 Dec 2017 11:54:40 GMT
|
80
68
|
- request:
|
81
69
|
method: get
|
82
|
-
uri: https://api.bugsnag.com/organizations/BUGSNAG_ORG_ID/collaborators/
|
70
|
+
uri: https://api.bugsnag.com/organizations/BUGSNAG_ORG_ID/collaborators/5a2fbf42d1befa003981d597/projects
|
83
71
|
body:
|
84
72
|
encoding: US-ASCII
|
85
73
|
string: ''
|
86
74
|
headers:
|
87
75
|
User-Agent:
|
88
|
-
- Bugsnag API Ruby Gem
|
76
|
+
- Bugsnag API Ruby Gem 2.0.1
|
89
77
|
Content-Type:
|
90
78
|
- application/json
|
91
79
|
X-Version:
|
92
80
|
- '2'
|
81
|
+
X-Bugsnag-Api:
|
82
|
+
- 'true'
|
93
83
|
Authorization:
|
94
84
|
- token BUGSNAG_AUTH_TOKEN
|
95
85
|
Accept-Encoding:
|
@@ -101,33 +91,27 @@ http_interactions:
|
|
101
91
|
code: 200
|
102
92
|
message: OK
|
103
93
|
headers:
|
104
|
-
|
105
|
-
-
|
106
|
-
Date:
|
107
|
-
- Mon, 09 Oct 2017 14:26:58 GMT
|
94
|
+
X-Total-Count:
|
95
|
+
- '30'
|
108
96
|
Content-Type:
|
109
97
|
- application/json; charset=utf-8
|
110
|
-
X-Total-Count:
|
111
|
-
- '18'
|
112
98
|
Etag:
|
113
|
-
- W/"
|
99
|
+
- W/"ae2151ff8110ad183e3c60612df93492"
|
114
100
|
Cache-Control:
|
115
101
|
- max-age=0, private, must-revalidate
|
116
102
|
X-Request-Id:
|
117
|
-
-
|
103
|
+
- ed581895-6661-49f4-9ff7-3c22447737eb
|
118
104
|
X-Runtime:
|
119
|
-
- '0.
|
105
|
+
- '0.635803'
|
120
106
|
Vary:
|
121
107
|
- Origin
|
122
|
-
X-
|
123
|
-
-
|
124
|
-
X-Ratelimit-Remaining:
|
125
|
-
- '1'
|
108
|
+
X-Rack-Cors:
|
109
|
+
- miss; no-origin
|
126
110
|
Content-Security-Policy:
|
127
111
|
- 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
|
128
|
-
connect-src ''self'' https://api.bugsnag.com https
|
129
|
-
https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
|
130
|
-
''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
|
112
|
+
connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
|
113
|
+
https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
|
114
|
+
img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
|
131
115
|
script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
|
132
116
|
https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
|
133
117
|
https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
|
@@ -141,19 +125,29 @@ http_interactions:
|
|
141
125
|
- none
|
142
126
|
X-Xss-Protection:
|
143
127
|
- 1; mode=block
|
144
|
-
X-Robots-Tag:
|
145
|
-
- noindex, nofollow
|
146
|
-
Strict-Transport-Security:
|
147
|
-
- max-age=31536000
|
148
|
-
Via:
|
149
|
-
- 1.1 google
|
150
|
-
Alt-Svc:
|
151
|
-
- clear
|
152
128
|
Transfer-Encoding:
|
153
129
|
- chunked
|
154
130
|
body:
|
155
|
-
encoding:
|
156
|
-
string: '[{"id":"59db8594562ced002210765c","slug":"testproject-21","name":"testProject","api_key":"384434dd535d5358f7386e399ec2007f","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-10-09T14:20:04.766Z","updated_at":"2017-10-09T14:20:04.766Z","errors_url":"https://api.bugsnag.com/projects/59db8594562ced002210765c/errors","events_url":"https://api.bugsnag.com/projects/59db8594562ced002210765c/events","url":"https://api.bugsnag.com/projects/59db8594562ced002210765c","html_url":"https://app.bugsnag.com/testorg-6/testproject-21","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59db8593c1951b0026d5a316","slug":"othername-3","name":"otherName","api_key":"7e3bd84a2d0fc1ea9585561dcef8ba1b","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-10-09T14:20:03.469Z","updated_at":"2017-10-09T14:20:04.180Z","errors_url":"https://api.bugsnag.com/projects/59db8593c1951b0026d5a316/errors","events_url":"https://api.bugsnag.com/projects/59db8593c1951b0026d5a316/events","url":"https://api.bugsnag.com/projects/59db8593c1951b0026d5a316","html_url":"https://app.bugsnag.com/testorg-6/othername-3","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59db8590c1951b0026d5a314","slug":"testproject-18","name":"testProject","api_key":"58d7fa000f28c0a38170582e7fd320ce","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-10-09T14:20:00.572Z","updated_at":"2017-10-09T14:20:00.572Z","errors_url":"https://api.bugsnag.com/projects/59db8590c1951b0026d5a314/errors","events_url":"https://api.bugsnag.com/projects/59db8590c1951b0026d5a314/events","url":"https://api.bugsnag.com/projects/59db8590c1951b0026d5a314","html_url":"https://app.bugsnag.com/testorg-6/testproject-18","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59db858e562ced00271092cd","slug":"testproject-17","name":"testProject","api_key":"76fc920d13137e7ab9740298e327f992","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-10-09T14:19:59.067Z","updated_at":"2017-10-09T14:20:00.006Z","errors_url":"https://api.bugsnag.com/projects/59db858e562ced00271092cd/errors","events_url":"https://api.bugsnag.com/projects/59db858e562ced00271092cd/events","url":"https://api.bugsnag.com/projects/59db858e562ced00271092cd","html_url":"https://app.bugsnag.com/testorg-6/testproject-17","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59db4efc562ced00221047b9","slug":"testproject-16","name":"testProject","api_key":"23eab552cd68923b90e7cac98ac6c3a7","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-10-09T10:27:08.438Z","updated_at":"2017-10-09T10:27:08.438Z","errors_url":"https://api.bugsnag.com/projects/59db4efc562ced00221047b9/errors","events_url":"https://api.bugsnag.com/projects/59db4efc562ced00221047b9/events","url":"https://api.bugsnag.com/projects/59db4efc562ced00221047b9","html_url":"https://app.bugsnag.com/testorg-6/testproject-16","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59b01cc9d0e0b8001972ba0b","slug":"testproject-15","name":"testProject","api_key":"e3224debefc9fc1ee170e9e80877fdd3","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-09-06T16:05:29.230Z","updated_at":"2017-09-06T16:05:29.230Z","errors_url":"https://api.bugsnag.com/projects/59b01cc9d0e0b8001972ba0b/errors","events_url":"https://api.bugsnag.com/projects/59b01cc9d0e0b8001972ba0b/events","url":"https://api.bugsnag.com/projects/59b01cc9d0e0b8001972ba0b","html_url":"https://app.bugsnag.com/testorg-6/testproject-15","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59b01cc540ab4d001dea69ff","slug":"testproject-13","name":"testProject","api_key":"b43cbea20e163b5c2a51971c3e913ae0","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-09-06T16:05:25.920Z","updated_at":"2017-09-06T16:05:27.105Z","errors_url":"https://api.bugsnag.com/projects/59b01cc540ab4d001dea69ff/errors","events_url":"https://api.bugsnag.com/projects/59b01cc540ab4d001dea69ff/events","url":"https://api.bugsnag.com/projects/59b01cc540ab4d001dea69ff","html_url":"https://app.bugsnag.com/testorg-6/testproject-13","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59b01cc4d0e0b80023727b93","slug":"testproject-12","name":"testProject","api_key":"5683099e71b2ebad61d0952673c0913b","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-09-06T16:05:24.665Z","updated_at":"2017-09-06T16:05:24.665Z","errors_url":"https://api.bugsnag.com/projects/59b01cc4d0e0b80023727b93/errors","events_url":"https://api.bugsnag.com/projects/59b01cc4d0e0b80023727b93/events","url":"https://api.bugsnag.com/projects/59b01cc4d0e0b80023727b93","html_url":"https://app.bugsnag.com/testorg-6/testproject-12","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59b01cc3d0e0b8001e72b5ca","slug":"othername-2","name":"otherName","api_key":"d5eea2e409f20889b5db402e6d843a5f","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-09-06T16:05:23.248Z","updated_at":"2017-09-06T16:05:23.837Z","errors_url":"https://api.bugsnag.com/projects/59b01cc3d0e0b8001e72b5ca/errors","events_url":"https://api.bugsnag.com/projects/59b01cc3d0e0b8001e72b5ca/events","url":"https://api.bugsnag.com/projects/59b01cc3d0e0b8001e72b5ca","html_url":"https://app.bugsnag.com/testorg-6/othername-2","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59b01c8fd0e0b8001972b989","slug":"testproject-10","name":"testProject","api_key":"9fe9539ca0da2a34bdb16060e76854e7","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-09-06T16:04:31.271Z","updated_at":"2017-09-06T16:04:31.271Z","errors_url":"https://api.bugsnag.com/projects/59b01c8fd0e0b8001972b989/errors","events_url":"https://api.bugsnag.com/projects/59b01c8fd0e0b8001972b989/events","url":"https://api.bugsnag.com/projects/59b01c8fd0e0b8001972b989","html_url":"https://app.bugsnag.com/testorg-6/testproject-10","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59b01c8dd0e0b8001e72b5c8","slug":"othername-1","name":"otherName","api_key":"75f48f43d4bdfe2708ce01561a4ffafa","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-09-06T16:04:29.975Z","updated_at":"2017-09-06T16:04:30.547Z","errors_url":"https://api.bugsnag.com/projects/59b01c8dd0e0b8001e72b5c8/errors","events_url":"https://api.bugsnag.com/projects/59b01c8dd0e0b8001e72b5c8/events","url":"https://api.bugsnag.com/projects/59b01c8dd0e0b8001e72b5c8","html_url":"https://app.bugsnag.com/testorg-6/othername-1","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59b01c8cd0e0b8001972b987","slug":"testproject-8","name":"testProject","api_key":"207b25c76ba8033502af25ebb260f639","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-09-06T16:04:28.302Z","updated_at":"2017-09-06T16:04:29.194Z","errors_url":"https://api.bugsnag.com/projects/59b01c8cd0e0b8001972b987/errors","events_url":"https://api.bugsnag.com/projects/59b01c8cd0e0b8001972b987/events","url":"https://api.bugsnag.com/projects/59b01c8cd0e0b8001972b987","html_url":"https://app.bugsnag.com/testorg-6/testproject-8","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59afc168bf058b0023562dae","slug":"testproject-6","name":"testProject","api_key":"de2d6996fd37e52179e58c4f41aad643","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-09-06T09:35:36.689Z","updated_at":"2017-09-06T09:35:36.689Z","errors_url":"https://api.bugsnag.com/projects/59afc168bf058b0023562dae/errors","events_url":"https://api.bugsnag.com/projects/59afc168bf058b0023562dae/events","url":"https://api.bugsnag.com/projects/59afc168bf058b0023562dae","html_url":"https://app.bugsnag.com/testorg-6/testproject-6","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59afc13ebf058b001e56358a","slug":"testproject-5","name":"testProject","api_key":"54fcc98509c087b247ca8e57d85daa17","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-09-06T09:34:54.394Z","updated_at":"2017-09-06T09:34:54.394Z","errors_url":"https://api.bugsnag.com/projects/59afc13ebf058b001e56358a/errors","events_url":"https://api.bugsnag.com/projects/59afc13ebf058b001e56358a/events","url":"https://api.bugsnag.com/projects/59afc13ebf058b001e56358a","html_url":"https://app.bugsnag.com/testorg-6/testproject-5","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59afb2fbbf058b001e55ef61","slug":"othername","name":"otherName","api_key":"0daec2f6dd20d809f89c5bd3edc8f06c","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-09-06T08:34:03.998Z","updated_at":"2017-09-06T08:34:04.815Z","errors_url":"https://api.bugsnag.com/projects/59afb2fbbf058b001e55ef61/errors","events_url":"https://api.bugsnag.com/projects/59afb2fbbf058b001e55ef61/events","url":"https://api.bugsnag.com/projects/59afb2fbbf058b001e55ef61","html_url":"https://app.bugsnag.com/testorg-6/othername","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59afb2fad0e0b8001e71e05f","slug":"testproject-3","name":"testProject","api_key":"1fdc5108d68a063900c1ce44903433b6","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-09-06T08:34:02.563Z","updated_at":"2017-09-06T08:34:03.394Z","errors_url":"https://api.bugsnag.com/projects/59afb2fad0e0b8001e71e05f/errors","events_url":"https://api.bugsnag.com/projects/59afb2fad0e0b8001e71e05f/events","url":"https://api.bugsnag.com/projects/59afb2fad0e0b8001e71e05f","html_url":"https://app.bugsnag.com/testorg-6/testproject-3","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"59afb2f8d0e0b8001971def9","slug":"testproject-1","name":"testProject","api_key":"98a436f6d2709699a4a77c8e773b53c7","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-09-06T08:34:00.446Z","updated_at":"2017-09-06T08:34:00.446Z","errors_url":"https://api.bugsnag.com/projects/59afb2f8d0e0b8001971def9/errors","events_url":"https://api.bugsnag.com/projects/59afb2f8d0e0b8001971def9/events","url":"https://api.bugsnag.com/projects/59afb2f8d0e0b8001971def9","html_url":"https://app.bugsnag.com/testorg-6/testproject-1","open_error_count":0,"collaborators_count":3,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"BUGSNAG_PROJECT_ID","slug":"testproject","name":"testProject","api_key":"a9314cbebc860a6d0ad32f0cd7c65581","type":"other","is_full_view":true,"release_stages":["production","development"],"language":null,"created_at":"2017-09-04T14:08:33.195Z","updated_at":"2017-09-04T14:08:33.195Z","errors_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID/errors","events_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID/events","url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","html_url":"https://app.bugsnag.com/testorg-6/testproject","open_error_count":0,"collaborators_count":4,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":5,"resolve_on_deploy":false}]'
|
131
|
+
encoding: UTF-8
|
132
|
+
string: '[{"id":"5a2fc37fd1befa003981d5b9","slug":"testproject-9","name":"testProject","api_key":"8d884c18c157b78db019266b277daf9e","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-12-12T11:54:39.227Z","updated_at":"2017-12-12T11:54:39.227Z","errors_url":"https://api.bugsnag.com/projects/5a2fc37fd1befa003981d5b9/errors","events_url":"https://api.bugsnag.com/projects/5a2fc37fd1befa003981d5b9/events","url":"https://api.bugsnag.com/projects/5a2fc37fd1befa003981d5b9","html_url":"https://api.bugsnag.com/bugsnag/testproject-9","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a2fc37ed1befa003981d5b6","slug":"testproject-8","name":"testProject","api_key":"09e1f65d227e7e725ac76a8d8fed6fa5","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-12-12T11:54:38.420Z","updated_at":"2017-12-12T11:54:38.829Z","errors_url":"https://api.bugsnag.com/projects/5a2fc37ed1befa003981d5b6/errors","events_url":"https://api.bugsnag.com/projects/5a2fc37ed1befa003981d5b6/events","url":"https://api.bugsnag.com/projects/5a2fc37ed1befa003981d5b6","html_url":"https://api.bugsnag.com/bugsnag/testproject-8","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a2fc37dd1befa002881d59d","slug":"othername-1","name":"otherName","api_key":"106ceb030be4439f114b3cd25de93868","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-12-12T11:54:37.561Z","updated_at":"2017-12-12T11:54:38.031Z","errors_url":"https://api.bugsnag.com/projects/5a2fc37dd1befa002881d59d/errors","events_url":"https://api.bugsnag.com/projects/5a2fc37dd1befa002881d59d/events","url":"https://api.bugsnag.com/projects/5a2fc37dd1befa002881d59d","html_url":"https://api.bugsnag.com/bugsnag/othername-1","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a2fc37bd1befa003981d5b1","slug":"testproject-5","name":"testProject","api_key":"681f5e34a26d1a22ebf29d01ddb88958","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-12-12T11:54:35.950Z","updated_at":"2017-12-12T11:54:35.950Z","errors_url":"https://api.bugsnag.com/projects/5a2fc37bd1befa003981d5b1/errors","events_url":"https://api.bugsnag.com/projects/5a2fc37bd1befa003981d5b1/events","url":"https://api.bugsnag.com/projects/5a2fc37bd1befa003981d5b1","html_url":"https://api.bugsnag.com/bugsnag/testproject-5","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a2fbf22d1befa001781d585","slug":"othername","name":"otherName","api_key":"d9e2df3ce0a6cef8a119b81c85a57b94","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-12-12T11:36:02.814Z","updated_at":"2017-12-12T11:36:03.217Z","errors_url":"https://api.bugsnag.com/projects/5a2fbf22d1befa001781d585/errors","events_url":"https://api.bugsnag.com/projects/5a2fbf22d1befa001781d585/events","url":"https://api.bugsnag.com/projects/5a2fbf22d1befa001781d585","html_url":"https://api.bugsnag.com/bugsnag/othername","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a2fbf21d1befa002881d592","slug":"testproject-2","name":"testProject","api_key":"e9db58cf49266bbaf2e91f0a751f650f","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-12-12T11:36:01.085Z","updated_at":"2017-12-12T11:36:01.511Z","errors_url":"https://api.bugsnag.com/projects/5a2fbf21d1befa002881d592/errors","events_url":"https://api.bugsnag.com/projects/5a2fbf21d1befa002881d592/events","url":"https://api.bugsnag.com/projects/5a2fbf21d1befa002881d592","html_url":"https://api.bugsnag.com/bugsnag/testproject-2","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a2fbf20d1befa001781d582","slug":"testproject-1","name":"testProject","api_key":"7b22fa3ad0bd8b3e9115f2fb9aeb898c","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-12-12T11:36:00.366Z","updated_at":"2017-12-12T11:36:00.366Z","errors_url":"https://api.bugsnag.com/projects/5a2fbf20d1befa001781d582/errors","events_url":"https://api.bugsnag.com/projects/5a2fbf20d1befa001781d582/events","url":"https://api.bugsnag.com/projects/5a2fbf20d1befa001781d582","html_url":"https://api.bugsnag.com/bugsnag/testproject-1","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a2fbf1fd1befa003981d594","slug":"testproject","name":"testProject","api_key":"43814140e7cf5323d943e1d31f23edc7","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-12-12T11:35:59.840Z","updated_at":"2017-12-12T11:35:59.840Z","errors_url":"https://api.bugsnag.com/projects/5a2fbf1fd1befa003981d594/errors","events_url":"https://api.bugsnag.com/projects/5a2fbf1fd1befa003981d594/events","url":"https://api.bugsnag.com/projects/5a2fbf1fd1befa003981d594","html_url":"https://api.bugsnag.com/bugsnag/testproject","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"BUGSNAG_PROJECT_ID","slug":"vcr-tests","name":"VCR-tests","api_key":"9191b28535676195b179a23508aa68b5","type":"other","is_full_view":true,"release_stages":["production"],"language":null,"created_at":"2017-12-12T10:54:03.600Z","updated_at":"2017-12-12T10:54:03.600Z","errors_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID/errors","events_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID/events","url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","html_url":"https://api.bugsnag.com/bugsnag/vcr-tests","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a159806d1befa1899baacc6","slug":"release-service","name":"Release
|
133
|
+
Service","api_key":"c37e822bf6cc92429b9d3cbbf0ab7727","type":"java","is_full_view":true,"release_stages":["development"],"language":"java","created_at":"2017-11-22T15:30:14.239Z","updated_at":"2017-11-22T15:30:14.253Z","errors_url":"https://api.bugsnag.com/projects/5a159806d1befa1899baacc6/errors","events_url":"https://api.bugsnag.com/projects/5a159806d1befa1899baacc6/events","url":"https://api.bugsnag.com/projects/5a159806d1befa1899baacc6","html_url":"https://api.bugsnag.com/bugsnag/release-service","open_error_count":1,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a159806d1befa1899baacc5","slug":"event-reporting-service","name":"Event
|
134
|
+
Reporting Service","api_key":"4e1701a75b8b2a8f63261c6f80d89287","type":"java","is_full_view":true,"release_stages":[],"language":"java","created_at":"2017-11-22T15:30:14.185Z","updated_at":"2017-11-22T15:30:14.205Z","errors_url":"https://api.bugsnag.com/projects/5a159806d1befa1899baacc5/errors","events_url":"https://api.bugsnag.com/projects/5a159806d1befa1899baacc5/events","url":"https://api.bugsnag.com/projects/5a159806d1befa1899baacc5","html_url":"https://api.bugsnag.com/bugsnag/event-reporting-service","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a159806d1befa1899baacc4","slug":"session-reporting-service","name":"Session
|
135
|
+
Reporting Service","api_key":"425910125c88c5d8e6e7d20f2220567f","type":"java","is_full_view":true,"release_stages":[],"language":"java","created_at":"2017-11-22T15:30:14.148Z","updated_at":"2017-11-22T15:30:14.164Z","errors_url":"https://api.bugsnag.com/projects/5a159806d1befa1899baacc4/errors","events_url":"https://api.bugsnag.com/projects/5a159806d1befa1899baacc4/events","url":"https://api.bugsnag.com/projects/5a159806d1befa1899baacc4","html_url":"https://api.bugsnag.com/bugsnag/session-reporting-service","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a159806d1befa1899baacc3","slug":"session-server","name":"Session
|
136
|
+
Server","api_key":"3a7f040ee846dc84e52fe59efaa29528","type":"java","is_full_view":true,"release_stages":["dev-docker"],"language":"java","created_at":"2017-11-22T15:30:14.104Z","updated_at":"2017-11-22T15:30:14.127Z","errors_url":"https://api.bugsnag.com/projects/5a159806d1befa1899baacc3/errors","events_url":"https://api.bugsnag.com/projects/5a159806d1befa1899baacc3/events","url":"https://api.bugsnag.com/projects/5a159806d1befa1899baacc3","html_url":"https://api.bugsnag.com/bugsnag/session-server","open_error_count":1,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a159805d1befa1899baacc2","slug":"session-service","name":"Session
|
137
|
+
Service","api_key":"f484c54fcee567693cb8cab08ced6a80","type":"java","is_full_view":true,"release_stages":["production","development","docker-dev"],"language":"java","created_at":"2017-11-22T15:30:14.028Z","updated_at":"2017-12-06T17:18:08.328Z","errors_url":"https://api.bugsnag.com/projects/5a159805d1befa1899baacc2/errors","events_url":"https://api.bugsnag.com/projects/5a159805d1befa1899baacc2/events","url":"https://api.bugsnag.com/projects/5a159805d1befa1899baacc2","html_url":"https://api.bugsnag.com/bugsnag/session-service","open_error_count":3,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f2d1befa47553ffd73","slug":"pingdom","name":"Pingdom","api_key":"d69c6fa4f700b83778ebca228d52c765","type":"other","is_full_view":true,"release_stages":[],"language":null,"created_at":"2017-11-22T14:30:10.141Z","updated_at":"2017-11-22T14:30:10.164Z","errors_url":"https://api.bugsnag.com/projects/5a1589f2d1befa47553ffd73/errors","events_url":"https://api.bugsnag.com/projects/5a1589f2d1befa47553ffd73/events","url":"https://api.bugsnag.com/projects/5a1589f2d1befa47553ffd73","html_url":"https://api.bugsnag.com/bugsnag/pingdom","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f2d1befa47553ffd72","slug":"hooks-server","name":"Hooks
|
138
|
+
Server","api_key":"628056ea40ee60f522381858386e5af3","type":"java","is_full_view":true,"release_stages":[],"language":"java","created_at":"2017-11-22T14:30:10.093Z","updated_at":"2017-11-22T14:30:10.111Z","errors_url":"https://api.bugsnag.com/projects/5a1589f2d1befa47553ffd72/errors","events_url":"https://api.bugsnag.com/projects/5a1589f2d1befa47553ffd72/events","url":"https://api.bugsnag.com/projects/5a1589f2d1befa47553ffd72","html_url":"https://api.bugsnag.com/bugsnag/hooks-server","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f2d1befa47553ffd71","slug":"integrations-worker","name":"Integrations
|
139
|
+
Worker","api_key":"86463cc86a2f0d524024b402f924b99a","type":"java","is_full_view":true,"release_stages":[],"language":"java","created_at":"2017-11-22T14:30:10.051Z","updated_at":"2017-11-22T14:30:10.067Z","errors_url":"https://api.bugsnag.com/projects/5a1589f2d1befa47553ffd71/errors","events_url":"https://api.bugsnag.com/projects/5a1589f2d1befa47553ffd71/events","url":"https://api.bugsnag.com/projects/5a1589f2d1befa47553ffd71","html_url":"https://api.bugsnag.com/bugsnag/integrations-worker","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f2d1befa47553ffd70","slug":"event-indexer","name":"Event
|
140
|
+
Indexer","api_key":"0800e641d5e4718286a9665e418cb2a5","type":"java","is_full_view":true,"release_stages":[],"language":"java","created_at":"2017-11-22T14:30:10.010Z","updated_at":"2017-11-22T14:30:10.026Z","errors_url":"https://api.bugsnag.com/projects/5a1589f2d1befa47553ffd70/errors","events_url":"https://api.bugsnag.com/projects/5a1589f2d1befa47553ffd70/events","url":"https://api.bugsnag.com/projects/5a1589f2d1befa47553ffd70","html_url":"https://api.bugsnag.com/bugsnag/event-indexer","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f1d1befa47553ffd6f","slug":"release-server","name":"Release
|
141
|
+
Server","api_key":"213fae174660128b2916a9ec502cac6c","type":"java","is_full_view":true,"release_stages":[],"language":"java","created_at":"2017-11-22T14:30:09.971Z","updated_at":"2017-11-22T14:30:09.988Z","errors_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6f/errors","events_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6f/events","url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6f","html_url":"https://api.bugsnag.com/bugsnag/release-server","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f1d1befa47553ffd6e","slug":"project-service","name":"Project
|
142
|
+
Service","api_key":"e610dda2b248127271bfbed533782def","type":"java","is_full_view":true,"release_stages":[],"language":"java","created_at":"2017-11-22T14:30:09.932Z","updated_at":"2017-11-22T14:30:09.948Z","errors_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6e/errors","events_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6e/events","url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6e","html_url":"https://api.bugsnag.com/bugsnag/project-service","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f1d1befa47553ffd6d","slug":"scheduling-service","name":"Scheduling
|
143
|
+
Service","api_key":"882c2301212b4e3f36a215551e554566","type":"java","is_full_view":true,"release_stages":[],"language":"java","created_at":"2017-11-22T14:30:09.893Z","updated_at":"2017-11-22T14:30:09.907Z","errors_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6d/errors","events_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6d/events","url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6d","html_url":"https://api.bugsnag.com/bugsnag/scheduling-service","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f1d1befa47553ffd6c","slug":"business-analytics-service","name":"Business
|
144
|
+
Analytics Service","api_key":"6b13a0ce215f89c91bff4094075ea8f6","type":"java","is_full_view":true,"release_stages":[],"language":"java","created_at":"2017-11-22T14:30:09.849Z","updated_at":"2017-11-22T14:30:09.870Z","errors_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6c/errors","events_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6c/events","url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6c","html_url":"https://api.bugsnag.com/bugsnag/business-analytics-service","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f1d1befa47553ffd6b","slug":"error-service","name":"Error
|
145
|
+
Service","api_key":"f177397351e8adc7cfd02dcf4aefce5c","type":"java","is_full_view":true,"release_stages":[],"language":"java","created_at":"2017-11-22T14:30:09.810Z","updated_at":"2017-11-22T14:30:09.826Z","errors_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6b/errors","events_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6b/events","url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6b","html_url":"https://api.bugsnag.com/bugsnag/error-service","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f1d1befa47553ffd6a","slug":"consistency-worker","name":"Consistency
|
146
|
+
Worker","api_key":"31b8dc85f8af15c3fcaa6f7fea648c2b","type":"java","is_full_view":true,"release_stages":[],"language":"java","created_at":"2017-11-22T14:30:09.761Z","updated_at":"2017-11-22T14:30:09.789Z","errors_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6a/errors","events_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6a/events","url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd6a","html_url":"https://api.bugsnag.com/bugsnag/consistency-worker","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f1d1befa47553ffd69","slug":"event-worker","name":"Event
|
147
|
+
Worker","api_key":"021cc8674d758920d23d13974e6d4219","type":"node","is_full_view":true,"release_stages":["development"],"language":"javascript","created_at":"2017-11-22T14:30:09.717Z","updated_at":"2017-11-22T14:30:09.734Z","errors_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd69/errors","events_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd69/events","url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd69","html_url":"https://api.bugsnag.com/bugsnag/event-worker","open_error_count":1,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f1d1befa47553ffd68","slug":"event-server","name":"Event
|
148
|
+
Server","api_key":"fbbe43d8a52b37da54f1dad3338bd625","type":"go","is_full_view":true,"release_stages":["dev-docker"],"language":null,"created_at":"2017-11-22T14:30:09.670Z","updated_at":"2017-11-22T14:30:09.692Z","errors_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd68/errors","events_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd68/events","url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd68","html_url":"https://api.bugsnag.com/bugsnag/event-server","open_error_count":1,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f1d1befa47553ffd67","slug":"symbolicator","name":"Symbolicator","api_key":"a601eaa9a91083348923c183b32da66f","type":"node","is_full_view":true,"release_stages":[],"language":"javascript","created_at":"2017-11-22T14:30:09.620Z","updated_at":"2017-11-22T14:30:09.641Z","errors_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd67/errors","events_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd67/events","url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd67","html_url":"https://api.bugsnag.com/bugsnag/symbolicator","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f1d1befa47553ffd66","slug":"upload-server","name":"Upload
|
149
|
+
Server","api_key":"016733631052ce4f71a26823cdd6df62","type":"node","is_full_view":true,"release_stages":[],"language":"javascript","created_at":"2017-11-22T14:30:09.575Z","updated_at":"2017-11-22T14:30:09.595Z","errors_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd66/errors","events_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd66/events","url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd66","html_url":"https://api.bugsnag.com/bugsnag/upload-server","open_error_count":0,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false},{"id":"5a1589f1d1befa47553ffd65","slug":"website-javascript","name":"Website
|
150
|
+
JavaScript","api_key":"9e68f5104323042c09d8809674e8d05c","type":"js","is_full_view":true,"release_stages":["development"],"language":"javascript","created_at":"2017-11-22T14:30:09.530Z","updated_at":"2017-11-22T14:30:09.550Z","errors_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd65/errors","events_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd65/events","url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd65","html_url":"https://api.bugsnag.com/bugsnag/website-javascript","open_error_count":2,"collaborators_count":2,"global_grouping":[],"location_grouping":[],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false,"url_whitelist":null,"ignore_old_browsers":false,"ignored_browser_versions":{}},{"id":"5a1589f1d1befa47553ffd64","slug":"website","name":"Website","api_key":"a0f5e56c125d7eeac31fd66e4f0cbd79","type":"rails","is_full_view":true,"release_stages":["development"],"language":"ruby","created_at":"2017-11-22T14:30:09.322Z","updated_at":"2017-11-22T14:30:09.383Z","errors_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd64/errors","events_url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd64/events","url":"https://api.bugsnag.com/projects/5a1589f1d1befa47553ffd64","html_url":"https://api.bugsnag.com/bugsnag/website","open_error_count":6,"collaborators_count":2,"global_grouping":["Mongo::ConnectionFailure","Net::HTTPFatalError","ActiveResource::ResourceNotFound","Net::SMTPSyntaxError","OpenURI::HTTPError","Net::SMTPFatalError","Mysql::Error","MemCache::MemCacheError","ThinkingSphinx::ConnectionError","Mongrel::TimeoutError","ActiveResource::TimeoutError","Net::SMTPServerBusy","ActiveResource::ServerError"],"location_grouping":["Timeout::Error","ActionView::MissingTemplate","Rack::Timeout::RequestTimeoutError"],"discarded_app_versions":[],"discarded_errors":[],"custom_event_fields_used":0,"resolve_on_deploy":false}]'
|
157
151
|
http_version:
|
158
|
-
recorded_at:
|
152
|
+
recorded_at: Tue, 12 Dec 2017 11:54:41 GMT
|
159
153
|
recorded_with: VCR 2.9.3
|
data/spec/cassettes/Bugsnag_Api_Client_Comments/_create_comment/creates_a_comment_on_the_error.yml
CHANGED
@@ -8,11 +8,13 @@ http_interactions:
|
|
8
8
|
string: '{"message":"test_message"}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Bugsnag API Ruby Gem
|
11
|
+
- Bugsnag API Ruby Gem 2.0.1
|
12
12
|
Content-Type:
|
13
13
|
- application/json
|
14
14
|
X-Version:
|
15
15
|
- '2'
|
16
|
+
X-Bugsnag-Api:
|
17
|
+
- 'true'
|
16
18
|
Authorization:
|
17
19
|
- token BUGSNAG_AUTH_TOKEN
|
18
20
|
Accept-Encoding:
|
@@ -24,35 +26,27 @@ http_interactions:
|
|
24
26
|
code: 201
|
25
27
|
message: Created
|
26
28
|
headers:
|
27
|
-
|
28
|
-
-
|
29
|
-
Date:
|
30
|
-
- Mon, 09 Oct 2017 14:23:18 GMT
|
29
|
+
Location:
|
30
|
+
- https://api.bugsnag.com/comments/5a2fc39cd1befa002881d5a2
|
31
31
|
Content-Type:
|
32
32
|
- application/json; charset=utf-8
|
33
|
-
Transfer-Encoding:
|
34
|
-
- chunked
|
35
|
-
Location:
|
36
|
-
- https://api.bugsnag.com/comments/59db8656901da0001b1eb558
|
37
33
|
Etag:
|
38
|
-
- W/"
|
34
|
+
- W/"a4aeefbeb9f807ff126157d48b95f384"
|
39
35
|
Cache-Control:
|
40
36
|
- max-age=0, private, must-revalidate
|
41
37
|
X-Request-Id:
|
42
|
-
-
|
38
|
+
- 36f7ecef-50fc-48c6-b3cb-0808ef1624d2
|
43
39
|
X-Runtime:
|
44
|
-
- '0.
|
40
|
+
- '0.416214'
|
45
41
|
Vary:
|
46
42
|
- Origin
|
47
|
-
X-
|
48
|
-
-
|
49
|
-
X-Ratelimit-Remaining:
|
50
|
-
- '1'
|
43
|
+
X-Rack-Cors:
|
44
|
+
- miss; no-origin
|
51
45
|
Content-Security-Policy:
|
52
46
|
- 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
|
53
|
-
connect-src ''self'' https://api.bugsnag.com https
|
54
|
-
https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
|
55
|
-
''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
|
47
|
+
connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
|
48
|
+
https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
|
49
|
+
img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
|
56
50
|
script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
|
57
51
|
https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
|
58
52
|
https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
|
@@ -66,17 +60,11 @@ http_interactions:
|
|
66
60
|
- none
|
67
61
|
X-Xss-Protection:
|
68
62
|
- 1; mode=block
|
69
|
-
|
70
|
-
-
|
71
|
-
Strict-Transport-Security:
|
72
|
-
- max-age=31536000
|
73
|
-
Via:
|
74
|
-
- 1.1 google
|
75
|
-
Alt-Svc:
|
76
|
-
- clear
|
63
|
+
Transfer-Encoding:
|
64
|
+
- chunked
|
77
65
|
body:
|
78
66
|
encoding: UTF-8
|
79
|
-
string: '{"id":"
|
67
|
+
string: '{"id":"5a2fc39cd1befa002881d5a2","message":"test_message","created_at":"2017-12-12T11:55:08.000Z","collaborator":{"id":"5a1589f0d1befa47553ffd5f","name":"Bugsnag","email":"BUGSNAG_USER_EMAIL","two_factor_enabled":false,"two_factor_enabled_on":null,"BUGSNAG_PASSWORD_updated_on":"2017-12-06T16:40:04.011Z","show_time_in_utc":true,"projects_url":"https://api.bugsnag.com/users/5a1589f0d1befa47553ffd5f/projects","heroku":false,"recovery_codes_remaining":0}}'
|
80
68
|
http_version:
|
81
|
-
recorded_at:
|
69
|
+
recorded_at: Tue, 12 Dec 2017 11:54:57 GMT
|
82
70
|
recorded_with: VCR 2.9.3
|
@@ -8,11 +8,13 @@ http_interactions:
|
|
8
8
|
string: '{"message":"message"}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Bugsnag API Ruby Gem
|
11
|
+
- Bugsnag API Ruby Gem 2.0.1
|
12
12
|
Content-Type:
|
13
13
|
- application/json
|
14
14
|
X-Version:
|
15
15
|
- '2'
|
16
|
+
X-Bugsnag-Api:
|
17
|
+
- 'true'
|
16
18
|
Authorization:
|
17
19
|
- token BUGSNAG_AUTH_TOKEN
|
18
20
|
Accept-Encoding:
|
@@ -24,35 +26,27 @@ http_interactions:
|
|
24
26
|
code: 201
|
25
27
|
message: Created
|
26
28
|
headers:
|
27
|
-
|
28
|
-
-
|
29
|
-
Date:
|
30
|
-
- Mon, 09 Oct 2017 14:23:17 GMT
|
29
|
+
Location:
|
30
|
+
- https://api.bugsnag.com/comments/5a2fc39bd1befa003981d5c0
|
31
31
|
Content-Type:
|
32
32
|
- application/json; charset=utf-8
|
33
|
-
Transfer-Encoding:
|
34
|
-
- chunked
|
35
|
-
Location:
|
36
|
-
- https://api.bugsnag.com/comments/59db8655901da000251e93bb
|
37
33
|
Etag:
|
38
|
-
- W/"
|
34
|
+
- W/"b84a9d3934d1eba2cff0252234149c26"
|
39
35
|
Cache-Control:
|
40
36
|
- max-age=0, private, must-revalidate
|
41
37
|
X-Request-Id:
|
42
|
-
-
|
38
|
+
- bcc65e0e-9f01-4e0b-9089-1aa1c4748159
|
43
39
|
X-Runtime:
|
44
|
-
- '0.
|
40
|
+
- '0.390049'
|
45
41
|
Vary:
|
46
42
|
- Origin
|
47
|
-
X-
|
48
|
-
-
|
49
|
-
X-Ratelimit-Remaining:
|
50
|
-
- '3'
|
43
|
+
X-Rack-Cors:
|
44
|
+
- miss; no-origin
|
51
45
|
Content-Security-Policy:
|
52
46
|
- 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
|
53
|
-
connect-src ''self'' https://api.bugsnag.com https
|
54
|
-
https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
|
55
|
-
''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
|
47
|
+
connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
|
48
|
+
https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
|
49
|
+
img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
|
56
50
|
script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
|
57
51
|
https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
|
58
52
|
https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
|
@@ -66,32 +60,28 @@ http_interactions:
|
|
66
60
|
- none
|
67
61
|
X-Xss-Protection:
|
68
62
|
- 1; mode=block
|
69
|
-
|
70
|
-
-
|
71
|
-
Strict-Transport-Security:
|
72
|
-
- max-age=31536000
|
73
|
-
Via:
|
74
|
-
- 1.1 google
|
75
|
-
Alt-Svc:
|
76
|
-
- clear
|
63
|
+
Transfer-Encoding:
|
64
|
+
- chunked
|
77
65
|
body:
|
78
66
|
encoding: UTF-8
|
79
|
-
string: '{"id":"
|
67
|
+
string: '{"id":"5a2fc39bd1befa003981d5c0","message":"message","created_at":"2017-12-12T11:55:07.000Z","collaborator":{"id":"5a1589f0d1befa47553ffd5f","name":"Bugsnag","email":"BUGSNAG_USER_EMAIL","two_factor_enabled":false,"two_factor_enabled_on":null,"BUGSNAG_PASSWORD_updated_on":"2017-12-06T16:40:04.011Z","show_time_in_utc":true,"projects_url":"https://api.bugsnag.com/users/5a1589f0d1befa47553ffd5f/projects","heroku":false,"recovery_codes_remaining":0}}'
|
80
68
|
http_version:
|
81
|
-
recorded_at:
|
69
|
+
recorded_at: Tue, 12 Dec 2017 11:54:56 GMT
|
82
70
|
- request:
|
83
71
|
method: get
|
84
|
-
uri: https://api.bugsnag.com/comments/
|
72
|
+
uri: https://api.bugsnag.com/comments/5a2fc39bd1befa003981d5c0
|
85
73
|
body:
|
86
74
|
encoding: US-ASCII
|
87
75
|
string: ''
|
88
76
|
headers:
|
89
77
|
User-Agent:
|
90
|
-
- Bugsnag API Ruby Gem
|
78
|
+
- Bugsnag API Ruby Gem 2.0.1
|
91
79
|
Content-Type:
|
92
80
|
- application/json
|
93
81
|
X-Version:
|
94
82
|
- '2'
|
83
|
+
X-Bugsnag-Api:
|
84
|
+
- 'true'
|
95
85
|
Authorization:
|
96
86
|
- token BUGSNAG_AUTH_TOKEN
|
97
87
|
Accept-Encoding:
|
@@ -103,31 +93,25 @@ http_interactions:
|
|
103
93
|
code: 200
|
104
94
|
message: OK
|
105
95
|
headers:
|
106
|
-
Server:
|
107
|
-
- nginx
|
108
|
-
Date:
|
109
|
-
- Mon, 09 Oct 2017 14:23:17 GMT
|
110
96
|
Content-Type:
|
111
97
|
- application/json; charset=utf-8
|
112
98
|
Etag:
|
113
|
-
- W/"
|
99
|
+
- W/"9394de93d9d8fe007ab97f2df6714c4e"
|
114
100
|
Cache-Control:
|
115
101
|
- max-age=0, private, must-revalidate
|
116
102
|
X-Request-Id:
|
117
|
-
-
|
103
|
+
- '084f7542-22ea-435f-9ae2-b9454056ef02'
|
118
104
|
X-Runtime:
|
119
|
-
- '0.
|
105
|
+
- '0.594008'
|
120
106
|
Vary:
|
121
107
|
- Origin
|
122
|
-
X-
|
123
|
-
-
|
124
|
-
X-Ratelimit-Remaining:
|
125
|
-
- '2'
|
108
|
+
X-Rack-Cors:
|
109
|
+
- miss; no-origin
|
126
110
|
Content-Security-Policy:
|
127
111
|
- 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
|
128
|
-
connect-src ''self'' https://api.bugsnag.com https
|
129
|
-
https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
|
130
|
-
''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
|
112
|
+
connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
|
113
|
+
https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
|
114
|
+
img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
|
131
115
|
script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
|
132
116
|
https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
|
133
117
|
https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
|
@@ -141,19 +125,11 @@ http_interactions:
|
|
141
125
|
- none
|
142
126
|
X-Xss-Protection:
|
143
127
|
- 1; mode=block
|
144
|
-
X-Robots-Tag:
|
145
|
-
- noindex, nofollow
|
146
|
-
Strict-Transport-Security:
|
147
|
-
- max-age=31536000
|
148
|
-
Via:
|
149
|
-
- 1.1 google
|
150
|
-
Alt-Svc:
|
151
|
-
- clear
|
152
128
|
Transfer-Encoding:
|
153
129
|
- chunked
|
154
130
|
body:
|
155
|
-
encoding:
|
156
|
-
string: '{"id":"
|
131
|
+
encoding: UTF-8
|
132
|
+
string: '{"id":"5a2fc39bd1befa003981d5c0","message":"message","created_at":"2017-12-12T11:55:07.000Z","user":{"id":"5a1589f0d1befa47553ffd5f","email":"BUGSNAG_USER_EMAIL","name":"Bugsnag","url":"https://api.bugsnag.com/users/5a1589f0d1befa47553ffd5f","projects_url":"https://api.bugsnag.com/users/5a1589f0d1befa47553ffd5f/projects"},"url":"https://api.bugsnag.com/comments/5a2fc39bd1befa003981d5c0"}'
|
157
133
|
http_version:
|
158
|
-
recorded_at:
|
134
|
+
recorded_at: Tue, 12 Dec 2017 11:54:56 GMT
|
159
135
|
recorded_with: VCR 2.9.3
|