Appending XMLElement array?
in
Programming Questions
•
2 years ago
Hi folks,
I'm working on some sketches using the
Guardian Open Platform API which returns results as an XMLElement, which I can then run getChildren() on to get each result. This will return up to 50 results as a single XMLElement, so to get more than 50 results I have to run the query multiple times and combine the results in Processing. The issue I'm having is that I want to combine the XMLElement arrays returned from getChildren() , but I'm unsure how to go about this. Using
- results= append(results, responseChild);
Can anyone suggest what is going wrong here?
1