fetch

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

Deprecated

This class is deprecated and will be removed in a future release.

Replace with

com.gravatar.services.ProfileService.retrieve

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<Profile, ErrorType>

Deprecated

This class is deprecated and will be removed in a future release.

Replace with

com.gravatar.services.ProfileService.retrieve

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<Profile, ErrorType>

Deprecated

This class is deprecated and will be removed in a future release.

Replace with

com.gravatar.services.ProfileService.retrieve

Fetches a Gravatar profile for the given hash.

Return

The fetched profiles

Parameters

hash

The hash to fetch the profile for