I am working with an API and want to know how I can easily search and display / format tag-based output.
For example, here is an API page and OUtput XML examples:
http://developer.linkedin.com/docs/DOC-1191
I want to be able to process each record as an object, for example, the user name User.first User.last so that I can display and store information and perform a search.
Maybe the stone that makes it easier?
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<people-search>
<people total="108" count="10" start="0">
<person>
<id>tePXJ3SX1o</id>
<first-name>Bill</first-name>
<last-name>Doe</last-name>
<headline>Marketing Professional and Matchmaker</headline>
<picture-url>http://media.linkedin.com:/....</picture-url>
</person>
<person>
<id>pcfBxmL_Vv</id>
<first-name>Ed</first-name>
<last-name>Harris</last-name>
<headline>Chief Executive Officer</headline>
</person>
...
</people>
<num-results>108</num-results>
</people-search>
source
share