Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 1.45 KB

usage-core.md

File metadata and controls

45 lines (35 loc) · 1.45 KB

Core Module usage

The :gravatar module provides services that you can use to interact with the Gravatar backend. It includes ProfileService and AvatarService that correspond to the exposed public REST API.

Fetching User Profile

Here's an example of how to fetch a user profile with an email:

coroutineScope.launch {
    when (val profile = ProfileService().retrieveCatching(Email("[email protected]"))) {
        is GravatarResult.Success -> {
            Log.d("Gravatar", "Profile: ${profile.value}")
            // Do something with the profile
        }

        is GravatarResult.Failure -> {
            Log.e("Gravatar", "Error: ${profile.error}")
            // Handle the error
        }
    }
}

Fetching Avatars

AvatarService requires an authentication token to retrieve user's data. To get the token, please follow the steps described in the Gravatar's OAuth section.

To fetch avatars associated with an email:

coroutineScope.launch {
    when (val avatars = AvatarService().retrieveCatching("token", Email("[email protected]").hash())) {
        is GravatarResult.Success -> {
            Log.d("Gravatar", "Avatars: ${avatars.value}")
            // Do something with the avatars
        }

        is GravatarResult.Failure -> {
            Log.e("Gravatar", "Error: ${avatars.error}")
            // Handle the error
        }
    }
}