Commit 5e84dfbb authored by Daniel Qian's avatar Daniel Qian
parent 31420467
......@@ -52,7 +52,14 @@ Request Information:
Request Headers:
{% for i, key in ipairs(keys) do %}
{{key}}={{headers[key]}}
{% local val = headers[key] %}
{% if type(val) == "table" then %}
{% for i = 1,#val do %}
{{key}}={{val[i]}}
{% end %}
{% else %}
{{key}}={{val}}
{% end %}
{% end %}
Request Body:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment