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!
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

Abdalla Ali
2,972 Pointshow to retrieve data from a class in Parse.com
Hi,
I have a form with EditText that contain first name, last name, email and password, i managed to insert these data to a class called Users in Parse.com using signUpInBackground method.
The problem right now is how can i retrieve those data from class Users? what type of method from Parse.com should i use?
Thanks, Abdalla.
2 Answers

Ben Jakuben
Treehouse TeacherHi Abdalla,
You can use the query
method from the ParseUser class: https://parse.com/docs/android_guide#users-querying
You should be able to figure out how to use this based on the later lessons in the Self-Destructing Message App course, but let me know if you have any follow up questions!

Abdalla Ali
2,972 PointsThanks Ben for your help :)