Skip to content

Instantly share code, notes, and snippets.

@micolous
Created November 7, 2024 07:18
Show Gist options
  • Save micolous/2593789b5b797015dc32ddf049a028a1 to your computer and use it in GitHub Desktop.
Save micolous/2593789b5b797015dc32ddf049a028a1 to your computer and use it in GitHub Desktop.
Optional OAuth2 authentication
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