v3.8.3.0 开发调试中...
This commit is contained in:
parent
9eb3142b8c
commit
c94b6bd3ff
BIN
images/AliDDN-UI-01.JPG
Normal file
BIN
images/AliDDN-UI-01.JPG
Normal file
Binary file not shown.
After Width: | Height: | Size: 70 KiB |
BIN
images/AliDDN-UI-02.JPG
Normal file
BIN
images/AliDDN-UI-02.JPG
Normal file
Binary file not shown.
After Width: | Height: | Size: 31 KiB |
@ -6,11 +6,24 @@ using System.Xml;
|
|||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
using System.Net.Http.Headers;
|
using System.Net.Http.Headers;
|
||||||
|
using System.Net.Security;
|
||||||
|
using System.Security.Cryptography.X509Certificates;
|
||||||
|
|
||||||
namespace net.nutcore.aliddns
|
namespace net.nutcore.aliddns
|
||||||
{
|
{
|
||||||
public partial class Form_About : Form
|
public partial class Form_About : Form
|
||||||
{
|
{
|
||||||
|
public static bool RemoteCertificateValidationCallback(Object sender,
|
||||||
|
X509Certificate certificate,
|
||||||
|
X509Chain chain,
|
||||||
|
SslPolicyErrors sslPolicyErrors)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
private static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
|
||||||
|
{
|
||||||
|
return true; //总是接受
|
||||||
|
}
|
||||||
public Form_About()
|
public Form_About()
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -22,33 +35,45 @@ namespace net.nutcore.aliddns
|
|||||||
{
|
{
|
||||||
checkBox_autoCheckUpdate.Checked = true;
|
checkBox_autoCheckUpdate.Checked = true;
|
||||||
//获取远程版本信息
|
//获取远程版本信息
|
||||||
/*
|
try
|
||||||
string strUrl = "https://api.github.com/respo/wisdomwei201804/AliDDNS/releases/latest"; //从控件获取WAN口IP查询网址,默认值为:"http://whatismyip.akamai.com/";
|
{
|
||||||
|
|
||||||
|
string strUrl = "https://api.github.com/wisdomwei201804/AliDDNS/releases/latest"; //从控件获取WAN口IP查询网址,默认值为:"http://whatismyip.akamai.com/";
|
||||||
Uri uri = new Uri(strUrl);
|
Uri uri = new Uri(strUrl);
|
||||||
|
if (strUrl.StartsWith("https"))
|
||||||
|
System.Net.ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;
|
||||||
WebRequest webreq = WebRequest.Create(uri);
|
WebRequest webreq = WebRequest.Create(uri);
|
||||||
Stream s = webreq.GetResponse().GetResponseStream();
|
Stream s = webreq.GetResponse().GetResponseStream();
|
||||||
StreamReader sr = new StreamReader(s, Encoding.Default);
|
StreamReader sr = new StreamReader(s, Encoding.Default);
|
||||||
string all = sr.ReadToEnd();*/
|
string all = sr.ReadToEnd();
|
||||||
|
MessageBox.Show(all.ToString());
|
||||||
try
|
}
|
||||||
|
/*try
|
||||||
{
|
{
|
||||||
System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
|
string strUrl = "https://github.com/wisdomwei201804/AliDDNS/releases/latest";
|
||||||
HttpContent httpContent = new StringContent("");
|
if(strUrl.StartsWith("https"))
|
||||||
|
System.Net.ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072; // SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls1.2 | SecurityProtocolType.Tls12;
|
||||||
|
HttpClient httpClient = new HttpClient();
|
||||||
|
HttpContent httpContent = new StringContent("Authorization: token 7e5aaa4649a6bdb9d5459abd221ef15ec484da79");
|
||||||
httpContent.Headers.ContentType = new MediaTypeHeaderValue("application/json");
|
httpContent.Headers.ContentType = new MediaTypeHeaderValue("application/json");
|
||||||
httpContent.Headers.ContentType.CharSet = "utf-8";
|
httpContent.Headers.ContentType.CharSet = "utf-8";
|
||||||
httpContent.Headers.Add("token", "11111111111");
|
//httpContent.Headers.ContentType = new MediaTypeHeaderValue("application/x-www-form-urlencoded");
|
||||||
|
|
||||||
|
//httpContent.Headers.Add("token", "7e5aaa4649a6bdb9d5459abd221ef15ec484da79");
|
||||||
// httpContent.Headers.Add("appId", appId);
|
// httpContent.Headers.Add("appId", appId);
|
||||||
//httpContent.Headers.Add("serviceURL", serviceURL);
|
//httpContent.Headers.Add("serviceURL", serviceURL);
|
||||||
HttpClient httpClient = new HttpClient();
|
|
||||||
|
//ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
|
||||||
//httpClient..setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET, "utf-8");
|
//httpClient..setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET, "utf-8");
|
||||||
HttpResponseMessage response = httpClient.PostAsync("https://api.github.com/respo/wisdomwei201804/AliDDNS/releases/latest", httpContent).Result;
|
HttpResponseMessage response = httpClient.PostAsync(strUrl, httpContent).Result;
|
||||||
//statusCode = response.StatusCode.ToString();
|
//statusCode = response.StatusCode.ToString();
|
||||||
if (response.IsSuccessStatusCode)
|
// if (response.IsSuccessStatusCode)
|
||||||
{
|
//{
|
||||||
string result = response.Content.ReadAsStringAsync().Result;
|
string result = response.Content.ReadAsStringAsync().Result;
|
||||||
|
MessageBox.Show(result.ToString());
|
||||||
// return result;
|
// return result;
|
||||||
}
|
//}
|
||||||
}
|
}*/
|
||||||
catch( Exception error)
|
catch( Exception error)
|
||||||
{
|
{
|
||||||
MessageBox.Show(error.ToString());
|
MessageBox.Show(error.ToString());
|
||||||
|
@ -46,6 +46,7 @@
|
|||||||
<DefineConstants>TRACE</DefineConstants>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<CodeAnalysisIgnoreGeneratedCode>true</CodeAnalysisIgnoreGeneratedCode>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ApplicationIcon>alidns.ico</ApplicationIcon>
|
<ApplicationIcon>alidns.ico</ApplicationIcon>
|
||||||
|
Loading…
Reference in New Issue
Block a user