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![](https://ecs-static.teamtreehouse.com/assets/views/marketing/shared/community-banner-white-47072046c51352fe6a69f5e691ff5700b28bb11d45197d7bdf066d9ea3f72d0c.webp)
![Tarkik Mittal](https://secure.gravatar.com/avatar/802ff10f1f8b87142f2bcf3eca02ed78?s=96&d=https%3A%2F%2Fecs-static.teamtreehouse.com%2Fassets%2Fcontent%2Fdefault_avatar-445fbbabfc8dc9188fb5967fe43322ee0c3e0dd1e10f378bf8343784af5a13eb.webp&r=pg)
Tarkik Mittal
1,771 PointsI 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](https://uploads.teamtreehouse.com/production/profile-photos/3556872/micro_IMG_7527b.jpg)
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 PointsIf 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();
Michael Van Dusen
12,136 PointsMichael Van Dusen
12,136 PointsThanks 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
17,902 PointsEgo Team
17,902 PointsThanks 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