Skip to content

Commit f451301

Browse files
committed
PATCH: fix declared auth method in openapi
1 parent 8aa31ac commit f451301

16 files changed

+6127
-405
lines changed

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,18 @@ configuration.api_key['ApiKey'] = 'YOUR_API_KEY'
111111
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
112112
# configuration.api_key_prefix['ApiKey'] = 'Bearer'
113113

114+
# Configure OAuth2 access token for authorization: BIMData_Connect
115+
configuration = bimdata_api_client.Configuration(
116+
host = "http://localhost"
117+
)
118+
configuration.access_token = 'YOUR_ACCESS_TOKEN'
119+
120+
# Configure OAuth2 access token for authorization: BIMData_Connect
121+
configuration = bimdata_api_client.Configuration(
122+
host = "http://localhost"
123+
)
124+
configuration.access_token = 'YOUR_ACCESS_TOKEN'
125+
114126
# Configure API key authorization: Bearer
115127
configuration.api_key['Bearer'] = 'YOUR_API_KEY'
116128

@@ -786,6 +798,22 @@ Class | Method | HTTP request | Description
786798
- **Location**: HTTP header
787799

788800

801+
## BIMData_Connect
802+
803+
- **Type**: OAuth
804+
- **Flow**: implicit
805+
- **Authorization URL**: http://fakeurl.bimdata.example/auth/realms/bimdata/protocol/openid-connect/auth
806+
- **Scopes**: N/A
807+
808+
809+
## BIMData_Connect
810+
811+
- **Type**: OAuth
812+
- **Flow**: application
813+
- **Authorization URL**:
814+
- **Scopes**: N/A
815+
816+
789817
## Bearer
790818

791819
- **Type**: API key

0 commit comments

Comments
 (0)