Encoding issue with Appian 20.1

Hello,

I use Appian cloud and yesterday evenning, I upgraded to the 20.1 version.

Since this upgrade, I have encoding issues with my integrations results that I did not have before.

The results are in JSON format and every value that contains special characters are now not "correctly" displayed/returned :  Véhicule instead of Véhicule

When I do the same request with Postman or my web browers, I have the results well encoded (Véhicule).

Does someone have the same issue ?

Does someone have a solution about this ?

Thank you

  Discussion posts and replies are publicly visible

Parents Reply
  • Hello Claire,

    If I understood well the support, with 20.1 version, they added the following behaviour to the integration components :

    - if there is no charset defined in the Http Response, Appian set the encoding with the default value ISO_8859_1

    - if the charset is defined, Appian uses the charset from the response

    Actually, it seems that the only way is to configure your API to send the charset in the respons : Content-Type: application/json;charset=UTF-8

    It worked for me.

Children