We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using openapi: 3.0.2 yaml I want to make the tokenURL configurable. Even just let the user edit it.
openapi: 3.0.2
tokenURL
Swagger/OpenAPI definition:
openapi: 3.0.2 info: title: Demo version: '1.0' servers: - url: '/api' description: Internal API (relative path) security: - OAuth2: [] paths: /hello: get: summary: Your GET endpoint operationId: getHello responses: '200': description: OK '400': description: Bad Request '401': description: Unauthorized components: securitySchemes: OAuth2: type: oauth2 description: This API uses OAuth 2 flows: clientCredentials: tokenUrl: "{protocol}://{server}:{port}/auth/realms/system/{tenant}/openid-connect/token" scopes: {}
Currently the user cannot change the tokenUrl:
The text was updated successfully, but these errors were encountered:
Please see #3406 for discussion of OAuth realm support.
Sorry, something went wrong.
No branches or pull requests
Content & configuration
Using
openapi: 3.0.2
yaml I want to make thetokenURL
configurable. Even just let the user edit it.Swagger/OpenAPI definition:
Currently the user cannot change the tokenUrl:
The text was updated successfully, but these errors were encountered: