如何摆脱json消息中的POST详细信息?

时间:2019-01-24 11:09:42

标签: c++ json

我收到一个包含JSON的消息,并且在解析为JSON详细信息时遇到问题。我收到的味精是:

POST /api/school/2/order HTTP/1.1
User-Agent: Guzzle/4.0 curl/7.21.4 PHP/5.5.7
content-type: application/json
Content-Length: 12

{
 "json msg is here"
}

我要删除前4行。.

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

使用libCURL获取实际的JSON数据。然后使用jsoncpp之类的C ++库对其进行解析。