cancel
Showing results for 
Search instead for 
Did you mean: 

Using UTF-8 Encoding in WebServiceUtilities.ExecuteRESTService ()

karoljawornik
Discoverer
0 Kudos

WebServiceUtilities.ExecuteRESTService () returns incorrect results.
var ContentType = "application/json; charset=utf-8";

Why does the function return '\\u0104' instead of 'Ą'. Where did I go wrong?

Accepted Solutions (0)

Answers (1)

Answers (1)

VVancalbergh
Contributor

The content type parameter determines what content YOU are sending in the Request. The "Accept" headerparameter tells the server what response-type you are accepting/expecting.

https://stackoverflow.com/questions/35722586/header-parameters-accept-and-content-type-in-a-rest-con...