This commit is contained in:
南浔
2025-08-13 13:39:01 +08:00
43 changed files with 534 additions and 44 deletions
+2 -1
View File
@@ -37,7 +37,8 @@ namespace Apimanager_backend.Tools
using var client = new HttpClient();
var content = new FormUrlEncodedContent(parameters);
var response = await client.PostAsync($"{baseUrl}/mapi.php", content);
return JsonConvert.DeserializeObject<EpayResponse>(await response.Content.ReadAsStringAsync());
var responseJson = await response.Content.ReadAsStringAsync();
return JsonConvert.DeserializeObject<EpayResponse>(responseJson);
}
/// <summary>