Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following response:

{
   "data": [
      {
         "name": "This is a test 123",
         "start_time": "2013-12-02T18:00:00+0530",
         "end_time": "2013-12-02T20:00:00+0530",
         "location": "Mount Lavinia",
         "id": "525447507473743",
         "rsvp_status": "attending"
      },
      {
         "name": "This is a test event",
         "start_time": "2013-12-02T18:00:00+0530",
         "end_time": "2013-12-02T20:00:00+0530",
         "location": "Mount Lavinia",
         "id": "560383743988530",
         "rsvp_status": "attending"
      },
}

],

I have the following code to access the response:

                JSONObject jsonObj = new JSONObject(result);
                JSONArray jsonArr = jsonObj.getJSONArray("data");
                for(int i = 0; i < jsonArr .length(); i++)
                {
                   JSONObject jsonArrObj = jsonArr.getJSONObject(i);
                   String id = jsonArrObj.getString("id");
                   String username = jsonArrObj.getString("name");
                   Log.w("event names are", username.toString());

                } 

I get the following error:

json.JSON.typeMismatch(JSON.java:100)

I searched for a solution but could not get any.

share|improve this question
Which of the lines is giving the error, the first one? – Anders Metnik Dec 5 '12 at 9:21
there are no compile errors, I see "json.JSON.typeMismatch(JSON.java:100)" onlin the log cat – TharakaNirmana Dec 5 '12 at 9:24
2  
is your response quote complete? It looks like you are missing the ] at the end of the array. Also a , is to much after your second array – Zerd1984 Dec 5 '12 at 9:24
Use an online json validator and check form errors – blackbelt Dec 5 '12 at 9:27
sorry, I mistakenly avoided putting ] and , , because there are so many elements, so I put only 2. I pasted the whole response on JSON PARSER ONLINE and it works fine... – TharakaNirmana Dec 5 '12 at 9:31
show 6 more comments

1 Answer

up vote 1 down vote accepted

this is the full parsing of your JSON string you are getting form graph.facebook.com API :

ArrayList<HashMap<String,String>> arrahaspmap=new 
                              ArrayList<HashMap<String,String>>();
HashMap<String,String> hashmaptemp;
JSONObject jsonObj;
 try {
    jsonObj = new JSONObject(sdskd);
    JSONArray jsonArr = jsonObj.getJSONArray("data");
    System.out.println("jsonArr jsonArr jsonArr jsonArr :: "+jsonArr.length());

    for(int i = 0; i < jsonArr .length(); i++)
         {
           JSONObject jsonArrObj = jsonArr.getJSONObject(i);
           hashmaptemp=new HashMap<String, String>();
           hashmaptemp.put("id", jsonArrObj.getString("id"));
           hashmaptemp.put("end_time", jsonArrObj.getString("end_time"));
           hashmaptemp.put("location", jsonArrObj.getString("location"));
           hashmaptemp.put("name", jsonArrObj.getString("name"));
           hashmaptemp.put("rsvp_status", jsonArrObj.getString("rsvp_status"));
           arrahaspmap.add(hashmaptemp);
        } 
  JSONObject jsonobjpaging= jsonObj.getJSONObject("paging");
  String strprevious=jsonobjpaging.getString("previous");
  String strnext=jsonobjpaging.getString("next");
  System.out.println("jsonobjpaging previous :: "+strprevious);

  System.out.println("strnext next :: "+strnext);
} catch (JSONException e) {
   // TODO Auto-generated catch block
     e.printStackTrace();
}
share|improve this answer
nope, still a , too much ;) – Zerd1984 Dec 5 '12 at 9:29
@Zerd1984 : no need to remove "," it's valid now – ρяσѕρєя K Dec 5 '12 at 9:32
I mistakenly avoided putting ] and , , because there are so many elements, so I put only 2. I pasted the whole response on JSON PARSER ONLINE and it works fine...response seems to be OK, what about accessing them? – TharakaNirmana Dec 5 '12 at 9:32
@TharakaNirmana : see my edit answer. this is full parsing of json string and just copy past in your project – ρяσѕρєя K Dec 5 '12 at 10:41
1  
thank you very much!!!, it worked!!!!!!!! – TharakaNirmana Dec 5 '12 at 10:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.