0

我正在尝试解析请求正文

Content-type: application/vnd.contentful.management.v1+json

当我给Content-type: application/json

它工作正常,但 Contentful CMS 传递了上述内容类型,所以我必须以某种方式解析它。

4

2 回答 2

0

似乎您正在使用内容丰富的 Java SDK 对吗?

该标头由 SDK 填充,您是否需要解析该标头?

于 2016-11-10T13:53:24.177 回答
0

我找到了解决方案。

如果正文是 json 类型,默认情况下会在 header 中查找 Content-type application/json。

为了避免验证 Content-Type 标头是 JSON,我使用了它并且它有效。

@BodyParser.Of(BodyParser.TolerantJson.class)

于 2016-11-14T19:13:21.767 回答