I don't want to painfully create a class that has fields like id, name, etc. Is there a generic java class I could use instead to consume the response? I. e. extract it as key-value pairs?
Asked
Active
Viewed 112 times
1 Answers
1
No, java dosen't have a class for facebook, but u can parse the response to a JSONObject class, and then u can read it very easy with key-value.

Kongol
- 403
- 4
- 13
-
Thanks for the pointer to JSONObject - it is exactly what I needed! – necromancer Apr 29 '13 at 07:01