我正在尝试在内容丰富的空间上检索资源。
当我尝试使用.one
方法进行查询时,我返回了
com.contentful.java.cda.CDAHttpException: null
怎么了?
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);