I do need to create a long parameter list for a web page post which is not a dictionary based cause of multiple same keys.
Chromium shows this string as form data in the original request
p_action=RUN&p_mode=1&p_exec_mode=&p_page_url=&p_redirect_url=&p_reference_path=&p_arg_names=_title&p_arg_values=ARRAYSTART&p_arg_values=kschulz&p_arg_values=ARRAYEND&p_arg_names=reqnum&p_arg_values=ARRAYSTART&p_arg_values=0&p_arg_values=ARRAYEND&p_arg_names=_orderby_ord_1&p_arg_values=ASC
.... much more entries follow.
I know this is a crazy form data but I can not change this.
p_arg_names
is used multiple times and sometimes followed by multiple p_arg_value
entries. Array Start and Array Stop are even existing... So I need the right order too.
params=dict
... can not work here.
How can I provide requests.push(URL,DATA)
a longer pure string without losing the
Content-Type:application/x-www-form-urlencoded