Token Flow
Note
Make sure to refer Developer guide for OpenAPI based extensions from documentation
Issue Refresh Token¶
This OpenAPI extension implementation determines if the generated oauth2 token has a refresh token or not according to the Open Banking specification requirements.
OpenAPI Extensions¶
OpenAPI Extension | Description | OpenAPI Definition |
---|---|---|
issue-refresh-token | handle OAuth2 refresh token issuance according to the specification | issue-refresh-token/post |
Configuration¶
To enable, follow the steps below:
-
Open the
<IS_HOME>/repository/conf/deployment.toml
file. -
Locate the following tag and enabke it as below and make sure allowed_extensions contains above table mentioned OpenAPI extensions.
[financial_services.extensions.endpoint]
enabled = true
base_url = "<BASE_URL_OF THE EXTENSION>"
allowed_extensions = [ "issue_refresh_token" ]
[financial_services.extensions.endpoint.security]
# supported types : Basic-Auth or OAuth2
type = "Basic-Auth"
username = ""
password = ""
Top