I am trying to retrieve a resource on a contentful space.
When I try to do the query with .one
method, I have returned a
com.contentful.java.cda.CDAHttpException: null
What may be wrong?
FetchQuery<CDAEntry> fetch = client.fetch(CDAEntry.class);
fetch = fetch.where("content_type", content_type);
fetch = fetch.where("locale", "it_IT");
// line below launch com.contentful.java.cda.CDAHttpException: null
final CDAEntry entry = fetch.one(resourceId);