Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android

Tarkik Mittal
Tarkik Mittal
1,771 Points

I am getting error in passing string value to JSON object method

org.json.JSONException: Value com.squareup.okhttp.internal.http.RealResponseBody@419b3b08 of type java.lang.String cannot be converted to JSONObject

1 Answer

Christopher Shaw
seal-mask
PLUS
.a{fill-rule:evenodd;}techdegree seal-36
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 Points

If you are talking about getting this error in the android Weather app, I had the same problem, and was a result of putting toString() instead of string(), as shown below.

 String jsonData = response.body().string(); 

Thanks for this answer, I finally came across it after 10 minutes of trying to figure out what I was doing wrong. Sure would be nice if Treehouse would actually edit these videos with the little update bubbles that they claimed they would or at the very least put this info in the Teacher's Notes!

Ego Team
Ego Team
17,902 Points

Thanks so much mate. I've been struggling with the same thing for a whole day now. I felt like blowing out my brains. Came across this and tried switching out .toString(); with just .string(); and its working now...

Please update these videos Treehouse.

Thanks