- Notifications
You must be signed in to change notification settings - Fork1
OAuth2 definitions as OpenAPI Spec 3.0 components
License
ybelenko/oauth2_as_oas3_components
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
The example file which describes OAuth2 token endpoints locateddist/oauth2_endpoints.yml.
SinceRFC 6749 OAuth2 server implementation may be very different(optional/recommended response fields, extended grant) it might me useful to describe your unique implementation within your OAS3 file. It's also very handy to see examples of your token and error response, because RFC6749 is a text document without any pictures or graphs. The example file mentioned before contains description of token endpoints for each authorization grant, consider it as starting point.
Example file omitsauthorization endpoint endpoint on purpose. I don't know how to describe it with OAS3 since endpoint response isn't JSON(html page). If you have any suggestion please submit an issue to this repo.
SinceRFC 6749 - The OAuth2.0 Authorization Framework - 2.3.1. Client Password doesn't recommend to send client password in request body then our example expects basic authorization in all endpoints.
Since it's not actually a code, but markup you can just copy anything you want fromdist/oauth2_endpoints.yml.
There is also enhanced example with polymorphism atdist/oauth2_endpoints_polymorphism.yml.Please, make sure that your tools supports polymorphism. This example contains new features not highly adopted yet. Check at leastoneOf
property support. I wouldn't use it myself because most of the OpenAPI tools have issues with polymorphism now, but this example may be useful in forseeable future.
InstallComposer - Dependency Manager for PHP
Then run in terminal:
composer require ybelenko/oauth2_as_oas3_components
Use provided components via$ref
attribute like:
paths:/token:post:summary:Obtain access token with "authorization_code" grant.requestBody:$ref:'./vendor/ybelenko/oauth2_as_oas3_components/dist/components/requestBodies/TokenRequestCodeGrant.yml'responses:'200':$ref:'./vendor/ybelenko/oauth2_as_oas3_components/dist/components/responses/OAuth2TokenSuccessResponse.yml''4XX':$ref:'./vendor/ybelenko/oauth2_as_oas3_components/dist/components/responses/OAuth2TokenErrorResponse.yml'
Extended example with refsdist/oauth2_endpoints_with_refs.yml
Then run in terminal:
npm i --save oauth2_as_oas3_components
Use provided components via$ref
attribute like:
paths:/token:post:summary:Obtain access token with "authorization_code" grant.requestBody:$ref:'./node_modules/oauth2_as_oas3_components/dist/components/requestBodies/TokenRequestCodeGrant.yml'responses:'200':$ref:'./node_modules/oauth2_as_oas3_components/dist/components/responses/OAuth2TokenSuccessResponse.yml''4XX':$ref:'./node_modules/oauth2_as_oas3_components/dist/components/responses/OAuth2TokenErrorResponse.yml'
Extended example with refsdist/oauth2_endpoints_with_refs.yml
If you have any suggestions please submit an issue.
About
OAuth2 definitions as OpenAPI Spec 3.0 components
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Uh oh!
There was an error while loading.Please reload this page.