fetch

suspend fun fetch(hashOrUsername: String): Result<UserProfiles, ErrorType>

Fetches a Gravatar profile for the given hash or username.

Return

The fetched profile

Parameters

hashOrUsername

The hash or username to fetch the profile for


suspend fun fetch(email: Email): Result<UserProfiles, ErrorType>

Fetches a Gravatar profile for the given email address.

Return

The fetched profiles

Parameters

email

The email address to fetch the profile for


suspend fun fetch(hash: Hash): Result<UserProfiles, ErrorType>

Fetches a Gravatar profile for the given hash.

Return

The fetched profiles

Parameters

hash

The hash to fetch the profile for