contentful.java icon indicating copy to clipboard operation
contentful.java copied to clipboard

Java SDK for Contentful's Content Delivery API

Results 24 contentful.java issues
Sort by recently updated
recently updated
newest added

When calling CDAClient.fetch method to retrieve a piece of content from Contentful which includes an RTE with a table which includes embedded inline entries in it, these entries aren't resolved...

Bonjour, In our codebase, we have some boring manual mapping functions like this one: ```kotlin fun mapCDAEntryToEmployee(entry: CDAEntry): Employee { return Employee( id = entry.id(), firstName = entry.getField("firstName") ?: String.EMPTY,...

Bumps [gson](https://github.com/google/gson) from 2.8.5 to 2.8.9. Release notes Sourced from gson's releases. Gson 2.8.9 Make OSGi bundle's dependency on sun.misc optional (#1993). Deprecate Gson.excluder() exposing internal Excluder class (#1986). Prevent...

dependencies

The client contains an internal cache of content types. This cache becomes stale if the content model is changed, with the result that the com.contentful.java.cda.CDAEntry#contentType method returns an incorrect content...

Hello! We're currently trying to use the Contentful Java SDK on an Android application to consume our Content Type which includes an Image Asset inside the entity. The exception obtained...

When querying Contentful with too many entries via URL, we receive an error message `Error: URI Too Long` with status code 414. However, when using the CDAClient to do the...

enhancement

When using either `withLocale` or `where("locale"` with an unknown locale. An error appears instead of returning the default locale. ``` client.observeAndTransform(MyDataClass::class.java).withLocale("es-PT").all().blockingForEach { } ``` ``` Message: null Stacktrace: FAILED REQUEST:...

1. Update one field of entry which has linked entries 2. sync with proper token 3. sync result: 1 entry changed - as expected 4. entry has 0 linked entries...

Hello, After a sync action, there is no possibility to transform downloaded entries to local data/POJO classes annotated properly. Such action is possible for fetch like actions `client.observeAndTransform(LocalDataClass::class.java)`. Workaround is...

Hello, SynchronizedSpace, result of sync call, for some reason does not include items of type LOCALE. I guess it could be trivial to add it, considering the fact that other...