gpt4 book ai didi

ios - xamarin 中的等效 customHTTPProtocol

转载 作者:行者123 更新时间:2023-11-29 01:54:51 25 4
gpt4 key购买 nike

我希望构建应用通过使用客户端证书发出 https 请求并在 UIWebView 中显示内容。

我有一项研究,我可以使用对象 C 中的 customHTTPProtocol 来做到这一点。但我想使用 xamarin 构建这个应用程序。

我不知道如何在 xamarin 中执行此操作。

最佳答案

您的 Web 服务需要配置为使用 https。在您的客户端上,使用 System.Net.Http 库就足够了,如下所示:

using (var client = new HttpClient())
{
var response = await client.GetAsync(new Uri(url));
}

有很多关于此的文档: https://msdn.microsoft.com/en-us/library/system.net.http.httpclient(v=vs.118).aspx

关于ios - xamarin 中的等效 customHTTPProtocol,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30993222/

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