classic asp, xml-rpc, api – how do I parse?
-
I have made an xml-rpc connection to my wordpress api and have made the following request:
Dim Params(0) Set Params(0) = Server.CreateObject("Scripting.Dictionary") With Params(0) .Add "username","**masked**" .Add "password","**masked**" End With output = xmlRPC("https://vouzamo.wordpress.com/xmlrpc.php","getUsersBlogs",Params)
The request seems to work but I am unclear on how to parse the result in ASP. I have used isArray() and isObject() to determine that I am getting an array of objects but I need to know what methods are available to me to be able to get the useful string data from the object.
Any guidance on this would be extremely helpful.
Kind regards,
John Askew
- The topic ‘classic asp, xml-rpc, api – how do I parse?’ is closed to new replies.