You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $jsonResponse['message']);
161
+
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $jsonResponse['error_description']);
162
162
$this->assertSame('Code challenge must be provided for public clients', $jsonResponse['hint']);
163
163
}
164
164
@@ -198,7 +198,7 @@ public function testAuthCodeRequestWithClientWhoIsNotAllowedToMakeARequestWithPl
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $jsonResponse['message']);
201
+
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $jsonResponse['error_description']);
202
202
$this->assertSame('Plain code challenge method is not allowed for this client', $jsonResponse['hint']);
203
203
}
204
204
@@ -425,7 +425,7 @@ public function testFailedCodeRequestRedirectWithFakedRedirectUri(): void
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $response['message']);
68
+
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $response['error_description']);
69
69
$this->assertSame('Check the `client_id` parameter', $response['hint']);
70
70
}
71
71
@@ -79,7 +79,7 @@ public function testInvalidAuthorizationCredentials(): void
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $response['message']);
329
+
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $response['error_description']);
330
330
$this->assertSame('Check the `username` parameter', $response['hint']);
331
331
}
332
332
@@ -341,7 +341,7 @@ public function testMissingPasswordFieldPasswordGrant(): void
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $response['message']);
344
+
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $response['error_description']);
345
345
$this->assertSame('Check the `password` parameter', $response['hint']);
346
346
}
347
347
@@ -388,7 +388,7 @@ public function testDifferentClientRefreshGrant(): void
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $response['message']);
457
+
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $response['error_description']);
458
458
$this->assertSame('Check the `refresh_token` parameter', $response['hint']);
459
459
}
460
460
@@ -469,7 +469,7 @@ public function testInvalidPayloadRefreshGrant(): void
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $response['message']);
668
+
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $response['error_description']);
669
669
$this->assertSame('Authorization code was not issued to this client', $response['hint']);
670
670
}
671
671
@@ -683,7 +683,7 @@ public function testFailedAuthorizationWithExpiredCode(): void
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $response['message']);
686
+
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $response['error_description']);
687
687
$this->assertSame('Authorization code has expired', $response['hint']);
688
688
}
689
689
@@ -701,7 +701,7 @@ public function testFailedAuthorizationWithInvalidRedirectUri(): void
0 commit comments