retrieveCatching

suspend fun retrieveCatching(hashOrUsername: String): GravatarResult<Profile, ErrorType>

Fetches a Gravatar profile for the given hash or username. This method will catch any exception that occurs during the execution and return it as a GravatarResult.Failure.

Return

The fetched profile

Parameters

hashOrUsername

The hash or username to fetch the profile for


Fetches a Gravatar profile for the given email address. This method will catch any exception that occurs during the execution and return it as a GravatarResult.Failure.

Return

The fetched profiles

Parameters

email

The email address to fetch the profile for


Fetches a Gravatar profile for the given hash. This method will catch any exception that occurs during the execution and return it as a GravatarResult.Failure.

Return

The fetched profiles

Parameters

hash

The hash to fetch the profile for