I am using akka.http.scaladsl.model.HttpResponse, HttpEntity.
After getting the response , it is of type responseEntity of the format (Content-type: 'application/json', {MyJSONHERE}). Is there a way I can extract my json from the entity.
I tried entity.getDataBytes which gives the content of the entity in ByteString format. I want to properly read the JSON and parse it. Can someone guide me on this?
Code below works for me
dataBytesreturnsSource[ByteString, Any],Sink.foldcombines all parts of the stream into oneByteStringandutf8StringconvertsByteStringinto usualString.Here is some useful docs about HttpEntity.