2022-11-15 04:24:25 +02:00
# openapi.api.OAuthApi
## Load the API package
```dart
import 'package:openapi/api.dart';
```
All URIs are relative to */api*
Method | HTTP request | Description
------------- | ------------- | -------------
2023-11-04 03:33:15 +02:00
[**finishOAuth** ](OAuthApi.md#finishoauth ) | **POST** /oauth/callback |
[**linkOAuthAccount** ](OAuthApi.md#linkoauthaccount ) | **POST** /oauth/link |
[**redirectOAuthToMobile** ](OAuthApi.md#redirectoauthtomobile ) | **GET** /oauth/mobile-redirect |
[**startOAuth** ](OAuthApi.md#startoauth ) | **POST** /oauth/authorize |
[**unlinkOAuthAccount** ](OAuthApi.md#unlinkoauthaccount ) | **POST** /oauth/unlink |
2022-11-15 04:24:25 +02:00
2023-11-04 03:33:15 +02:00
# **finishOAuth**
> LoginResponseDto finishOAuth(oAuthCallbackDto)
2022-11-15 04:24:25 +02:00
### Example
```dart
import 'package:openapi/api.dart';
final api_instance = OAuthApi();
final oAuthCallbackDto = OAuthCallbackDto(); // OAuthCallbackDto |
try {
2023-11-04 03:33:15 +02:00
final result = api_instance.finishOAuth(oAuthCallbackDto);
2022-11-15 04:24:25 +02:00
print(result);
} catch (e) {
2023-11-04 03:33:15 +02:00
print('Exception when calling OAuthApi->finishOAuth: $e\n');
2022-11-15 04:24:25 +02:00
}
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**oAuthCallbackDto** | [**OAuthCallbackDto** ](OAuthCallbackDto.md )| |
### Return type
[**LoginResponseDto** ](LoginResponseDto.md )
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
2023-11-04 03:33:15 +02:00
# **linkOAuthAccount**
> UserResponseDto linkOAuthAccount(oAuthCallbackDto)
2022-12-26 17:35:52 +02:00
### Example
```dart
import 'package:openapi/api.dart';
2023-04-09 04:26:09 +02:00
// TODO Configure API key authorization: cookie
//defaultApiClient.getAuthentication< ApiKeyAuth > ('cookie').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication< ApiKeyAuth > ('cookie').apiKeyPrefix = 'Bearer';
2023-05-04 18:41:29 +02:00
// TODO Configure API key authorization: api_key
//defaultApiClient.getAuthentication< ApiKeyAuth > ('api_key').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication< ApiKeyAuth > ('api_key').apiKeyPrefix = 'Bearer';
2023-02-24 18:01:10 +02:00
// TODO Configure HTTP Bearer authorization: bearer
// Case 1. Use String Token
//defaultApiClient.getAuthentication< HttpBearerAuth > ('bearer').setAccessToken('YOUR_ACCESS_TOKEN');
// Case 2. Use Function which generate token.
// String yourTokenGeneratorFunction() { ... }
//defaultApiClient.getAuthentication< HttpBearerAuth > ('bearer').setAccessToken(yourTokenGeneratorFunction);
2022-12-26 17:35:52 +02:00
final api_instance = OAuthApi();
final oAuthCallbackDto = OAuthCallbackDto(); // OAuthCallbackDto |
try {
2023-11-04 03:33:15 +02:00
final result = api_instance.linkOAuthAccount(oAuthCallbackDto);
2022-12-26 17:35:52 +02:00
print(result);
} catch (e) {
2023-11-04 03:33:15 +02:00
print('Exception when calling OAuthApi->linkOAuthAccount: $e\n');
2022-12-26 17:35:52 +02:00
}
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**oAuthCallbackDto** | [**OAuthCallbackDto** ](OAuthCallbackDto.md )| |
### Return type
[**UserResponseDto** ](UserResponseDto.md )
### Authorization
2023-05-04 18:41:29 +02:00
[cookie ](../README.md#cookie ), [api_key ](../README.md#api_key ), [bearer ](../README.md#bearer )
2022-12-26 17:35:52 +02:00
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
2023-11-04 03:33:15 +02:00
# **redirectOAuthToMobile**
> redirectOAuthToMobile()
2022-12-29 22:47:30 +02:00
### Example
```dart
import 'package:openapi/api.dart';
final api_instance = OAuthApi();
try {
2023-11-04 03:33:15 +02:00
api_instance.redirectOAuthToMobile();
2022-12-29 22:47:30 +02:00
} catch (e) {
2023-11-04 03:33:15 +02:00
print('Exception when calling OAuthApi->redirectOAuthToMobile: $e\n');
2022-12-29 22:47:30 +02:00
}
```
### Parameters
This endpoint does not need any parameter.
### Return type
void (empty response body)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: Not defined
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
2023-11-04 03:33:15 +02:00
# **startOAuth**
> OAuthAuthorizeResponseDto startOAuth(oAuthConfigDto)
### Example
```dart
import 'package:openapi/api.dart';
final api_instance = OAuthApi();
final oAuthConfigDto = OAuthConfigDto(); // OAuthConfigDto |
try {
final result = api_instance.startOAuth(oAuthConfigDto);
print(result);
} catch (e) {
print('Exception when calling OAuthApi->startOAuth: $e\n');
}
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**oAuthConfigDto** | [**OAuthConfigDto** ](OAuthConfigDto.md )| |
### Return type
[**OAuthAuthorizeResponseDto** ](OAuthAuthorizeResponseDto.md )
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# **unlinkOAuthAccount**
> UserResponseDto unlinkOAuthAccount()
2022-12-26 17:35:52 +02:00
### Example
```dart
import 'package:openapi/api.dart';
2023-04-09 04:26:09 +02:00
// TODO Configure API key authorization: cookie
//defaultApiClient.getAuthentication< ApiKeyAuth > ('cookie').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication< ApiKeyAuth > ('cookie').apiKeyPrefix = 'Bearer';
2023-05-04 18:41:29 +02:00
// TODO Configure API key authorization: api_key
//defaultApiClient.getAuthentication< ApiKeyAuth > ('api_key').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication< ApiKeyAuth > ('api_key').apiKeyPrefix = 'Bearer';
2023-02-24 18:01:10 +02:00
// TODO Configure HTTP Bearer authorization: bearer
// Case 1. Use String Token
//defaultApiClient.getAuthentication< HttpBearerAuth > ('bearer').setAccessToken('YOUR_ACCESS_TOKEN');
// Case 2. Use Function which generate token.
// String yourTokenGeneratorFunction() { ... }
//defaultApiClient.getAuthentication< HttpBearerAuth > ('bearer').setAccessToken(yourTokenGeneratorFunction);
2022-12-26 17:35:52 +02:00
final api_instance = OAuthApi();
try {
2023-11-04 03:33:15 +02:00
final result = api_instance.unlinkOAuthAccount();
2022-12-26 17:35:52 +02:00
print(result);
} catch (e) {
2023-11-04 03:33:15 +02:00
print('Exception when calling OAuthApi->unlinkOAuthAccount: $e\n');
2022-12-26 17:35:52 +02:00
}
```
### Parameters
This endpoint does not need any parameter.
### Return type
[**UserResponseDto** ](UserResponseDto.md )
### Authorization
2023-05-04 18:41:29 +02:00
[cookie ](../README.md#cookie ), [api_key ](../README.md#api_key ), [bearer ](../README.md#bearer )
2022-12-26 17:35:52 +02:00
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)