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
Copy file name to clipboardExpand all lines: app/Http/Controllers/OAuth2/OAuth2ProviderController.php
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ public function __construct
92
92
newOA\Parameter(name: 'state', in: 'query', required: false, description: 'Opaque state parameter returned in the redirect', schema: newOA\Schema(type: 'string')),
93
93
newOA\Parameter(name: 'nonce', in: 'query', required: false, description: 'Nonce for ID token replay protection (OIDC)', schema: newOA\Schema(type: 'string')),
newOA\Parameter(name: 'max_age', in: 'query', required: false, description: 'Maximum authentication age in seconds (OIDC)', schema: newOA\Schema(type: 'integer')),
@@ -255,7 +255,6 @@ public function auth()
255
255
summary: 'OAuth2 Token Endpoint',
256
256
description: 'Issues access tokens. Supports authorization_code, client_credentials, password, refresh_token, and passwordless grant types.',
257
257
tags: ['OAuth2 / OpenID Connect'],
258
-
security: [['OAuth2ProviderSecurity' => []]],
259
258
requestBody: newOA\RequestBody(
260
259
description: 'Token request parameters',
261
260
required: true,
@@ -423,7 +422,17 @@ public function certs()
423
422
path: '/.well-known/openid-configuration',
424
423
operationId: 'oauth2Discovery',
425
424
summary: 'OpenID Connect Discovery Endpoint',
426
-
description: 'Returns the OpenID Provider Configuration document per OpenID Connect Discovery 1.0. Also available at /oauth2/.well-known/openid-configuration.',
425
+
description: 'Returns the OpenID Provider Configuration document per OpenID Connect Discovery 1.0.',
0 commit comments