Hi all,
I am trying to send some data over a post form that looks like this
SheetName=%7BBook3%7D%2C%7B0-Jason+.csv%7D&SheetName=%7BBook3%7D%2C%7B1-State.csv%7D
multiple value pairs with the same name.
I was trying to get the data out using
list('POST', [])->
{output, Req:post_param_group("SheetName")}.
from the instruction from
https://github.com/nitrogen/simple_bridge which say it should come out as List but I am getting it as a string
{Book3},{0-Jason .csv}{Book3},{1-State.csv}
which I was expecting to look like this
[{Book3},{0-Jason .csv}, {Book3},{1-State.csv}]
Chicgo Boss API doesn't even mention this function, so is there another way to do this or am I doing this wrong?
jason