gpt4 book ai didi

mono - Mono-通过SSL的HttpWebRequest-写入 header 时出错

转载 作者:行者123 更新时间:2023-12-04 13:39:04 24 4
gpt4 key购买 nike

下面通过SSL引发System.Net.WebException-Error:SendFailure(写 header 时出错),但对于http://www.google.com则正常工作

using System;
using System.Web;
using System.Net;
using System.IO;

namespace HTTPS_Headers
{
class MainClass
{
public static void Main (string[] args)
{
var request = (HttpWebRequest)WebRequest.Create ("https://www.google.co.uk/?q=mono");

using(var reader = new StreamReader(request.GetResponse().GetResponseStream())) {

Console.WriteLine (reader.ReadToEnd ());
}

Console.ReadLine();
}
}
}

我在Mono 3.4.0/Lubuntu 14.04上运行它。在Windows/.NET 4上通过SSL可以正常工作。

最佳答案

尝试在计算机上运行以下命令以导入受信任的根证书:

mozroots --import --sync

关于mono - Mono-通过SSL的HttpWebRequest-写入 header 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25081384/

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