Google Directory API java library (com.google.apis: google-api-services-admin-directory) returns phones,notes,websites... fields which are protobuf value type as java.lang.Object backed by List<ArrayMap<String, Object>> instance. example user.getEmails().toString():
java.lang.Object
List<ArrayMap<String, Object>> instance
user.getEmails().toString()
[ { [email protected], type=custom, customType= }, { [email protected], primary=true } ]
What is handy / proper way or library to parse this kind of Object?
PS org.springframework.boot.json.GsonJsonParser. can't do it:
com.google.gson.stream.MalformedJsonException: Expected value at line 1 column 55 path $[0].customType
UPDATE
Similar question has already been answered. Solution is the same.
2.1m questions
2.1m answers
60 comments
57.0k users