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
dataBytes
returnsSource[ByteString, Any]
,Sink.fold
combines all parts of the stream into oneByteString
andutf8String
convertsByteString
into usualString
.Here is some useful docs about HttpEntity.