gpt4 book ai didi

c# - 如何在 asp.net core 中使用 RestSharp.NetCore

转载 作者:IT王子 更新时间:2023-10-29 04:46:07 25 4
gpt4 key购买 nike

我已经完成了 http://restsharp.org/最有效的代码。下面是没有 asp.net core 的 RestSharp 代码。

public GenericResponseObject<T> GetGeneric<T>(string operation, params KeyValuePair<string, string>[] nameValues) where T : class
{
RestClient client = new RestClient(_baseUrl)
{
Authenticator = new HttpBasicAuthenticator(_username, _password)
};

RestRequest request = new RestRequest(operation, Method.GET);

foreach (KeyValuePair<string, string> nameValue in nameValues)
{
request.AddQueryParameter(nameValue.Key, nameValue.Value);
}

IRestResponse<GenericResponseObject<T>> response = client.Execute<GenericResponseObject<T>>(request);
GenericResponseObject<T> responseObject = response.Data;
return responseObject;
}
}

这段代码对我来说非常有用。现在我想在 asp.net core 中实现相同的代码。

我能得到一个如何在 asp.net core 中使用 RestSharp 的示例吗?我添加了依赖项 RestSharp.NetCore": 105.2.3

最佳答案

RestSharp v106 支持 .NET Standard,因此您的代码无需更改即可运行。

RestSharp.NetCore 包不是来自 RestSharp 团队,我们不支持。它也没有更新,所有者没有回复消息,也没有发布包的源代码。

关于c# - 如何在 asp.net core 中使用 RestSharp.NetCore,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41390647/

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