I am receiving data from the server using Volley
, but the received data is coming within double quotes.
"{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"INSI","3. Last Refreshed":"2017-11-24","4. Output Size":"Full size","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2017-11-24"....}"
I need to parse this information in order to extract the data but I am unable to convert it into JSONObject
. I am clueless.
On using jsonArray = new JSONArray(response);
The debugger says jsonArray
is NULL
TIA.