/kontentful

Kotlin Contentful SDK with Unwrapping

Primary LanguageKotlin

Kontentful: Contentful  Kotlin SDK

🚧 Kontentful - Contentful Kotlin Delivery SDK Beta 🚧

Kotlin SDK for Content Delivery API and Content Preview API. It helps in easily accessing the content stored in Contentful using Kotlin applications.

🚧 This SDK is in Beta version and not officially supported by Contentful. 🚧

Usage

data class Cat(val name: String, val bestFriend: Cat? = null) : Resource()

val contentful = Contentful( spaceId = SPACE_ID, token = DELIVERY_TOKEN )

val cats = contentful.fetchOne<Cat>("happycat").getOrThrow().items

For more usage information, please take a look at the end to end tests.

!THERE IS NO WARRANTY! USE SOFTWARE AT YOUR OWN RISK!