Posts by Bruno Jose da Costa • 23 points
3 posts
-
1
votes1
answer326
viewsQ: ASP.Net Web API - JSON without accentuation %20 %C3%A7
I am consuming an api but the return JSON does not come with the correct accent. in place of the mirror comes %20, for example. in the request json I even put the encoding.UFT8. How can I code this…
-
0
votes1
answer4288
viewsA: c# Consume an API using POST and header application/x-www-form-urlencoded by passing a JSON
using (var httpClient = new HttpClient()) { var url = @"https://api-il.traffilog.com/appengine_3/5E1DCD81-5138-4A35-B271-E33D71FFFFD9/1/json"; var jsonString = @"{ 'action':…
-
1
votes1
answer4288
viewsQ: c# Consume an API using POST and header application/x-www-form-urlencoded by passing a JSON
can give me a light? I need to consume an API that requires your header to have one content-type: application/x-www-form-urlencoded. This api takes json parameters and returns json. Using jquery I…