Aigio L

Results 61 comments of Aigio L

在 Unix 上设置页面打不开的问题在 https://github.com/BeyondDimension/SteamTools/commit/33c6f0d5f9408a2cdd1ba554e344eeb4da6c6e99 中修复 可以在目前的 action 上下载编译的版本测试 https://github.com/BeyondDimension/SteamTools/actions/runs/2826909792

> > 在 Unix 上设置页面打不开的问题在 [33c6f0d](https://github.com/BeyondDimension/SteamTools/commit/33c6f0d5f9408a2cdd1ba554e344eeb4da6c6e99) 中修复 > > 可以在目前的 action 上下载编译的版本测试 https://github.com/BeyondDimension/SteamTools/actions/runs/2826909792 > > Actions 不会编译 Linux 版本? [Release]Steam++_linux_x64_e369c6a https://github.com/BeyondDimension/SteamTools/suites/7737426888/artifacts/324551390

在设置-通用设置-存储空间上打开Logs文件夹,将完整的log内容贴上来

> [nlog-all-2022-07-24.log](https://github.com/BeyondDimension/SteamTools/files/9175013/nlog-all-2022-07-24.log) ``` 2022-07-24 10:36:38.7019|Error|CloudServiceClient|ApiConn Fail(1006),Url:api/Accelerate/All/4 | System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception. ---> System.Security.Authentication.AuthenticationException: Authentication failed, see inner exception. ---> System.ComponentModel.Win32Exception (0x80090302): 要求的函数不受支持 ---...

[ConsoleApp1.zip](https://github.com/BeyondDimension/SteamTools/files/9175080/ConsoleApp1.zip) 运行这个程序看看控制台输出 ``` using System.Net; const string url = "https://api.steampp.net/"; try { using var client = new HttpClient(); client.DefaultRequestVersion = HttpVersion.Version20; client.DefaultVersionPolicy = HttpVersionPolicy.RequestVersionExact; var htmlStr = await client.GetStringAsync(url); Console.WriteLine("Http2...

看来是 SSL 的问题,https://api.steampp.net 这个地址你能在浏览器中打开吗?

[ConsoleApp2.zip](https://github.com/BeyondDimension/SteamTools/files/9175134/ConsoleApp2.zip) 这个程序呢 ```v4.5``` ``` using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Text; using System.Threading.Tasks; namespace ConsoleApp2 { internal class Program { static async Task Main(string[] args)...

[ConsoleApp1(2).zip](https://github.com/BeyondDimension/SteamTools/files/9175145/ConsoleApp1.2.zip) 试试这个,WinHttpHandler 或许兼容性好一些 ``` using System.Net; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12 | SecurityProtocolType.Tls13; Console.WriteLine($"SecurityProtocol: {ServicePointManager.SecurityProtocol}"); var urls = new[] { "https://cn.bing.com/", "https://api.steampp.net/" }; foreach (var url in urls) { try...

下个版本会在设置中加一个 使用 [WinHttpHandler](https://docs.microsoft.com/zh-cn/dotnet/api/system.net.http.winhttphandler?view=dotnet-plat-ext-6.0) 的开关,默认会是关闭,之后你更新开启这个开关重启程序应该就能解决了

https://github.com/BeyondDimension/SteamTools/suites/7493675424/artifacts/307801195 用这个版本试一下