I am new to JSON and I am getting the follwoing Exception:
org.json.JSONArray cannot be converted to JSONObject in the first line of try se
if that really is the json you are receiving you should replace the entire this:
JSONObject json = new JSONObject(strResponse);
//Get the element that holds the internship ( JSONArray )
JSONArray name = json.names();
JSONArray internships = json.toJSONArray(name);
with
JSONArray internships = json.toJSONArray(strResponse);