gpt4 book ai didi

c# - HttpResponseMessage.Content.ReasAsString 返回空字符串

转载 作者:太空宇宙 更新时间:2023-11-03 20:49:35 25 4
gpt4 key购买 nike

我有一个 WS,我这样调用它:

HttpResponseMessage response = await client.PostAsync(url, new StringContent(json));

WS 将抛出异常(禁止),在我的 Blazor 应用程序中发出 PostAsync 调用,我将得到一个 HttpResponseMessage,响应代码为 405,不知道为什么是 405,它应该是 403 ( postman 返回 403)。

我启用了 CORS(ServiceStack 代码):

Plugins.Add(new CorsFeature(allowedOrigins: "*",
allowedMethods: "GET, POST, PUT, DELETE, OPTIONS",
allowedHeaders: "*",
allowCredentials: true));

这是我在 PostAsync 之前做的一些 Console.Writeline:

enter image description here

Failed to load resource: the server responded with a status of 405 ()

** 已更新 **

这是两种方法:

    public async Task<TResponse> PostAsync<TResponse, TRequest>(string requestUri, TRequest request)
{
string url = GetUrl(requestUri);
Console.WriteLine("URI: " + url);
string json = JsonConvert.SerializeObject(request);
Console.WriteLine($"{url} | {json}");
HttpResponseMessage response = await client.PostAsync(url, new StringContent(json));
return await GetResponseOrThrowHttpException<TResponse>(response);
}


private async Task<T> GetResponseOrThrowHttpException<T>(HttpResponseMessage response)
{
Console.WriteLine($"GetResponseOrThrowHttpException: {response.StatusCode}");
string responseString = await response.Content.ReadAsStringAsync();
Console.WriteLine($"GetResponseOrThrowHttpException ContentStringResult: |{responseString}|");
if (!response.IsSuccessStatusCode)
{
Newtonsoft.Json.Linq.JObject jsonObject = Newtonsoft.Json.Linq.JObject.Parse(responseString);
string responseStatusString = jsonObject["ResponseStatus"].ToString();

Console.WriteLine($"GetResponseOrThrowHttpException 4: {responseStatusString}");
ResponseStatus responseStatus = JsonConvert.DeserializeObject<ResponseStatus>(responseStatusString);
Console.WriteLine($"Throwing HttpException: {response.StatusCode} {responseStatus.Message}");
throw new HttpException(response.StatusCode, responseStatus.Message);
}
return JsonConvert.DeserializeObject<T>(responseString);
}

当我尝试获取响应的字符串值时,它是空的:

string responseString = await response.Content.ReadAsStringAsync();

responseString 是一个空(长度为 0)字符串。

如果我在 Postman 中运行完全相同的请求,我会得到一个有效的响应:

enter image description here

因此,在上图中底部看到的响应 JSON 是我想要在 Blazor 应用程序中使用的内容,并将其解析为 JSON 对象并从那里继续。我还注意到我在此处遇到了 403 错误,这是我预期的,而在 Blazor 应用程序中,我得到了 405。

即使我在 WS 端启用了 CORS,这是否是 CORS 问题?

最佳答案

我猜你的内容应该这样发布:

new StringContent(json, Encoding.UTF8, "application/json")

即使这不是你痛苦的原因,最好还是用这个……

希望这有助于...

关于c# - HttpResponseMessage.Content.ReasAsString 返回空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56597458/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com