I'm monitoring network data for my mobile application and while capturing the data I got the response in following format
"postData": {
"mimeType": "application/json; charset=utf-8",
"text": "\u001f�\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000�V[S�8\
u0014�+����l�qx�\t-�l!M)-�^�#�'�6��Jr2)��#��\u0002<���`�M
��������<3����\u001e��l�bɌ�$+�\u0001�yP�\\@�xb�L�RI^�@iY3�
53\\�\u0018��)�j3�0[D\u0001+���/�����渒�+��������*�N\u0016J�\rz50U
}
Headers Information:
"headers": [
{
"name": "Content-Encoding",
"value": "gzip"
},
{
"name": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"name": "Transfer-Encoding",
"value": "chunked"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Accept-Encoding",
"value": "gzip"
}
],
I'm not able to understand how to get the actual data out of it. Search internet didn't find any solution for this.