getCallbackURLs method

Future<Response<RedirectCallbackUrls>> getCallbackURLs({
  1. required String appId,
  2. CancelToken? cancelToken,
  3. Map<String, dynamic>? headers,
  4. Map<String, dynamic>? extra,
  5. ValidateStatus? validateStatus,
  6. ProgressCallback? onSendProgress,
  7. ProgressCallback? onReceiveProgress,
})

List Callback URLs Returns an application's redirect callback URLs.

Parameters:

  • appId - The identifier for the application.
  • cancelToken - A CancelToken that can be used to cancel the operation
  • headers - Can be used to add additional headers to the request
  • extras - Can be used to add flags to the request
  • validateStatus - A ValidateStatus callback that can be used to determine request success based on the HTTP status of the response
  • onSendProgress - A ProgressCallback that can be used to get the send progress
  • onReceiveProgress - A ProgressCallback that can be used to get the receive progress

Returns a Future containing a Response with a RedirectCallbackUrls as data Throws DioException if API call or serialization fails

Implementation

Future<Response<RedirectCallbackUrls>> getCallbackURLs({
  required String appId,
  CancelToken? cancelToken,
  Map<String, dynamic>? headers,
  Map<String, dynamic>? extra,
  ValidateStatus? validateStatus,
  ProgressCallback? onSendProgress,
  ProgressCallback? onReceiveProgress,
}) async {
  final path = r'/api/v1/applications/{app_id}/auth_redirect_urls'.replaceAll(
    '{'
    r'app_id'
    '}',
    encodeQueryParameter(
      _serializers,
      appId,
      const FullType(String),
    ).toString(),
  );
  final options = Options(
    method: r'GET',
    headers: <String, dynamic>{...?headers},
    extra: <String, dynamic>{
      'secure': <Map<String, String>>[
        {'type': 'http', 'scheme': 'bearer', 'name': 'kindeBearerAuth'},
      ],
      ...?extra,
    },
    validateStatus: validateStatus,
  );

  final response = await _dio.request<Object>(
    path,
    options: options,
    cancelToken: cancelToken,
    onSendProgress: onSendProgress,
    onReceiveProgress: onReceiveProgress,
  );

  RedirectCallbackUrls? responseData;

  try {
    final rawResponse = response.data;
    responseData =
        rawResponse == null
            ? null
            : _serializers.deserialize(
                  rawResponse,
                  specifiedType: const FullType(RedirectCallbackUrls),
                )
                as RedirectCallbackUrls;
  } catch (error, stackTrace) {
    throw DioException(
      requestOptions: response.requestOptions,
      response: response,
      type: DioExceptionType.unknown,
      error: error,
      stackTrace: stackTrace,
    );
  }

  return Response<RedirectCallbackUrls>(
    data: responseData,
    headers: response.headers,
    isRedirect: response.isRedirect,
    requestOptions: response.requestOptions,
    redirects: response.redirects,
    statusCode: response.statusCode,
    statusMessage: response.statusMessage,
    extra: response.extra,
  );
}