retrieve

suspend fun retrieve(hashOrUsername: String): Profile?

Fetches a Gravatar profile for the given hash or username. This method throws any exception that occurs during the execution.

Return

The fetched profile or null if profile not found

Parameters

hashOrUsername

The hash or username to fetch the profile for


suspend fun retrieve(email: Email): Profile?

Fetches a Gravatar profile for the given email address. This method throws any exception that occurs during the execution.

Return

The fetched profile or null if profile not found

Parameters

email

The email address to fetch the profile for


suspend fun retrieve(hash: Hash): Profile?

Fetches a Gravatar profile for the given hash. This method throws any exception that occurs during the execution.

Return

The fetched profile or null if profile not found

Parameters

hash

The hash to fetch the profile for