I am very new to VBA and I can not figure out how to get values from a Collection.
This is my code:
Dim p As Object Set p = JSON.parse(Response.Content) Dim links As Object Set links = p.Item("links") In the debugger for "links" I see:

I am using this library to parse json : http://www.ediy.co.nz/vbjson-json-parser-library-in-vb6-xidc55680.html
The part I have in json is:
"links":[ { "rel":"next", "href":"www.google.com" } ] How can I get the value of "rel" here?
On Error Resume Nextset? Have you just trieddebug.print links(0)anddebug.print links(1)