-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Description
Broken:
case "POST":
var requestBody = new StringContent(body);
response = await httpClient.PostAsync(absoluteUri, requestBody);
break;
Fixed:
case HttpMethods.POST:
var requestBody = new StringContent(body, Encoding.UTF8, ContentType);
response = await httpClient.PostAsync(absoluteUri, requestBody);
break;
Metadata
Metadata
Assignees
Labels
No labels