2020-01-15 09:10:13 UTC - Victor Lombardi: I'll try your option, it looks good https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1579079413132500?thread_ts=1579023260.122700&cid=C3TPCAQG1 ---- 2020-01-15 09:20:51 UTC - Victor Lombardi: Ok @Rodric Rabbah your option worked well. Now I have item like that : https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1579080051132700?thread_ts=1579023260.122700&cid=C3TPCAQG1 ---- 2020-01-15 09:21:03 UTC - Victor Lombardi: https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1579080063132900?thread_ts=1579023260.122700&cid=C3TPCAQG1 ---- 2020-01-15 09:21:29 UTC - Victor Lombardi: Maybe you know how to parse _easily_ that kind of string? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1579080089133300?thread_ts=1579023260.122700&cid=C3TPCAQG1 ---- 2020-01-15 09:43:47 UTC - Victor Lombardi: But not as @Upkar Lidder said, it means that my request "content-type": "multipart/form-data; boundary=----------1214141141", but forms are not already decoded in args https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1579081427133800?thread_ts=1579023260.122700&cid=C3TPCAQG1 ---- 2020-01-15 13:06:14 UTC - Victor Lombardi: Problem Fixed, I created my own library to parse content. Thank you all for help https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1579093574134000?thread_ts=1579023260.122700&cid=C3TPCAQG1 ---- 2020-01-15 13:06:25 UTC - Rodric Rabbah: the reason for automatic decoding didn’t occur - is almost surely the multi-part aspect of the form data https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1579093585134200?thread_ts=1579023260.122700&cid=C3TPCAQG1 ---- 2020-01-15 13:06:54 UTC - Rodric Rabbah: think the best way to decode that is to use some existing npm library/express middleware https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1579093614134600?thread_ts=1579023260.122700&cid=C3TPCAQG1 ---- 2020-01-15 13:11:05 UTC - Victor Lombardi: I have another error with Openwhisk : I download a file with python using this code *" response = requests.request("GET", url, headers=headers, data = payload, files = files).text.encode('utf8') "* When I print it with : "*print response" ->* I am able to see it in logs, but if I try to return it like that : "*return {'data': response }"* I got a timeout.... Maybe my problem sounds familiar to some of you...? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1579093865136800?thread_ts=1579093865.136800&cid=C3TPCAQG1 ---- 2020-01-15 13:16:22 UTC - Rodric Rabbah: the response has to be serializable to json - try using `json.dumps` https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1579094182137200?thread_ts=1579093865.136800&cid=C3TPCAQG1 ---- 2020-01-15 16:37:56 UTC - Michele Sciabarra: I tried that and it broke the build :slightly_smiling_face: https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1579106276137400?thread_ts=1579010797.119700&cid=C3TPCAQG1 ---- 2020-01-15 16:38:06 UTC - Michele Sciabarra: will try again now that it was merged https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1579106286137600?thread_ts=1579010797.119700&cid=C3TPCAQG1 ----