Hello, I am trying to parse through the echo json_encode I get from my url When the JSON is shown it is in the syntax: [{“ID”:“1”},{“ID”:“3”}]
How would I parse through this to get an array of the numbers?
I’ve tried Get Array Field Name: as ID but it doesn’t give me anything.
How would I use the plugin to get “ID” from each JSON Object?
I solved my own issue. Instead of creating the multiple JSON objects I just created one and inserted each number into on field name and I’m parsing that field name. Syntax now looks like {“IDs” : “1,3,6,”}
Hi Tyconner, what is your php code to find the new syntax like {“IDs” : “1,3,6,”} ? I have the same problem. Thx.