auth_provider_authorized

Handles returning requests from OAuth services during sign-in.

Functions

async pydelfini.delfini_core.api.auth.auth_provider_authorized.asyncio(provider, *, client)[source]

Handles returning requests from OAuth services during sign-in.

Parameters:
Raises:
  • errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Returns:

Union[Any]

Return type:

Any

async pydelfini.delfini_core.api.auth.auth_provider_authorized.asyncio_detailed(provider, *, client)[source]

Handles returning requests from OAuth services during sign-in.

Parameters:
Raises:
  • errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, ServerError]]

Return type:

Response[Any | ServerError]

pydelfini.delfini_core.api.auth.auth_provider_authorized.sync(provider, *, client)[source]

Handles returning requests from OAuth services during sign-in.

Parameters:
Raises:
  • errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Returns:

Union[Any]

Return type:

Any

pydelfini.delfini_core.api.auth.auth_provider_authorized.sync_detailed(provider, *, client)[source]

Handles returning requests from OAuth services during sign-in.

Parameters:
Raises:
  • errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, ServerError]]

Return type:

Response[Any | ServerError]