Using Spring Boot Feign Client to Send HTTP Parameters Encoded as Windows-1251 via POST Method
I have a Spring Boot Java application that exchanges data with an external API using a Feign client. This API only accepts data encoded in Windows-1251 for non-Latin characters. I have configured my Feign client to send the data, and it works fine when it consists of Latin characters only. However, when I need to transfer mixed data, it encodes using Percent Encoding.
Using Spring Boot Feign Client to Send HTTP Parameters Encoded as CP-1251 via POST Method
I have a Spring Boot Java application that exchanges data with an external API using a Feign client. This API only accepts data encoded in Windows-1251 for non-Latin characters. I have configured my Feign client to send the data, and it works fine when it consists of Latin characters only. However, when I need to transfer mixed data, it encodes using Percent Encoding.