[fix]修正UdpServer在接收广播时连续启动接收的错误,在StarAgent中,此时可能收到广播包,SocketFlags是Broadcast,需要清空,否则报错“参考的对象类型不支持尝试的操作”; 无需设置SocketOptionName.PacketInformation,在ReceiveMessageFromAsync时会自动设置,并且支持ipv6;
石头
authored at
2024-10-10 00:36:00
石头
committed at
2024-10-10 00:45:43
X
using System;
using System.Collections.Generic;
using System.Reflection;
namespace NewLife.Web.OAuth
{
/// <summary>身份验证提供者</summary>
public class GithubClient : OAuthClient
{
/// <summary>实例化</summary>
public GithubClient()
{
Server = "https://github.com/login/oauth/";
AuthUrl = "authorize?response_type={response_type}&client_id={key}&redirect_uri={redirect}&state={state}&scope={scope}";
AccessUrl = "access_token?grant_type=authorization_code&client_id={key}&client_secret={secret}&code={code}&state={state}&redirect_uri={redirect}";
UserUrl = "https://api.github.com/user?access_token={token}";
}
/// <summary>从响应数据中获取信息</summary>
/// <param name="dic"></param>
protected override void OnGetInfo(IDictionary<String, String> dic)
{
base.OnGetInfo(dic);
if (dic.ContainsKey("id")) UserID = dic["id"].Trim('\"').ToLong();
if (dic.ContainsKey("login")) UserName = dic["login"].Trim();
if (dic.ContainsKey("name")) NickName = dic["name"].Trim();
if (dic.ContainsKey("avatar_url")) Avatar = dic["avatar_url"].Trim();
if (dic.ContainsKey("bio")) Detail = dic["bio"].Trim();
}
private System.Net.Http.HttpClient _Client;
/// <summary>创建客户端</summary>
/// <param name="url">路径</param>
/// <returns></returns>
protected override String Request(String url)
{
if (_Client == null)
{
// 允许宽松头部
WebClientX.SetAllowUnsafeHeaderParsing(true);
var asm = Assembly.GetEntryAssembly() ?? Assembly.GetExecutingAssembly();
var agent = "";
if (asm != null) agent = $"{asm.GetName().Name} v{asm.GetName().Version}";
var client = new System.Net.Http.HttpClient();
client.DefaultRequestHeaders.UserAgent.ParseAdd(agent);
_Client = client;
}
return LastHtml = _Client.GetStringAsync(url).Result;
}
}
}
|