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!