Hello Flowable developers,
I have sent an http request to create new variable (using http task) with this parameters :
Request headers:
Accept: application/json;charset=UTF-8
Cache-Control: no-cache
Accept-Encoding: gzip,deflate
Content-Type: application/json;charset=UTF-8
/**in my json value i send a special characters/
Request body
[
{
“name”:“dossier”,
“type”:“json”,
“value”:{
“nom_Client”:“test فلان”},
“scope”:“local”
}
]
But, using swagger to get this variable, I am getting the following :
{
“name”: “dossier”,
“type”: “json”,
“value”: {
“nom_Client”: “test ???”,
“montantCredit”: “1.2E8”,
“typeCredit”: “”
},
“scope”: “local”
},
==> Probably it is encoding the body with a wrong format at the level of HTTP
Task
NB : when I try the same request from Postman it work perfectly
similarly swagger return data correctly
Is there a way to handle this ?
Best regards