I would like to trigger a piston from url to update some global variable. Its working fine one at the time but I would like to pass a list inside the url. Lets say : https://key/pistonid&name=test&value=1
this run well but I would like to be able to use something like that: https://key/pistonid&name=test,test2,test3&value=1,2,3
So using name[1] to extract the args, like with json. For now I m not able to do it act like json nor list. The only way that could work is to use a kind of separator between each and use complicated formula with search function to extract each…
Thanks!
you can trigger the piston from any web service…I just add arguments that can be pass through that! The thing is that it must be like: value=somthing&value2=somenthing&value3=somthing… and when you read it from the piston, it must be like: $args.value, $args.value2, $args.value3…