Created
November 7, 2024 07:18
-
-
Save micolous/2593789b5b797015dc32ddf049a028a1 to your computer and use it in GitHub Desktop.
Optional OAuth2 authentication
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: "3.0.3" | |
info: | |
title: Service with different authentication | |
version: "0.1" | |
paths: | |
/default_optional_auth: | |
get: | |
summary: Method with optional authentication, from a default policy. | |
operationId: default_optional_auth | |
responses: | |
"200": | |
description: Information about the currently logged in user. | |
content: | |
application/json: | |
schema: | |
type: string | |
description: Current user ID | |
nullable: true | |
/path_level_optional_auth: | |
get: | |
summary: Method with optional authentication, from a path-level policy. | |
operationId: path_level_optional_auth | |
responses: | |
"200": | |
description: Information about the currently logged in user. | |
content: | |
application/json: | |
schema: | |
type: string | |
description: Current user ID | |
nullable: true | |
security: | |
- {} | |
- oauth: | |
- special:api | |
/required_auth: | |
get: | |
summary: Method with mandatory authentication, from a path-level policy. | |
operationId: required_auth | |
responses: | |
"200": | |
description: Information about the currently logged in user. | |
content: | |
application/json: | |
schema: | |
type: string | |
description: Current user ID | |
nullable: false | |
security: | |
- oauth: | |
- write:api | |
components: | |
securitySchemes: | |
oauth: | |
type: oauth2 | |
flows: | |
authorizationCode: | |
authorizationUrl: https://auth.example.com/authorize | |
tokenUrl: https://auth.example.com/token | |
scopes: | |
read:api: API read access | |
special:api: API special access | |
write:api: API write access | |
security: | |
- {} | |
- oauth: | |
- read:api |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment