I have integrated the authentication API (https://selectapi.datascope.refinitiv.com/RestApi/v1/Authentication/RequestToken) using JAVA in our springboot application. The issue currently we are facing is with response with this API. The API response status is 200 but the language is not in English with the charSet as UTF-16. Due to this issue we are unable to extract the auth-token to make further calls to fetch data whereas we are seeing no issue while calling the above api from Postman.
Example :
We tried to convert the above response to UTF-8 charSet but the result had some unwanted characters, due to which we cannot proceed with this approach.
From Postman :
Can anyone suggest any changes that we can make in our application code to get the desired response ?