[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;
namespace NewLife.Web.OAuth
{
/// <summary>淘宝身份验证提供者</summary>
public class TaobaoClient : OAuthClient
{
/// <summary>实例化</summary>
public TaobaoClient()
{
var url = "https://oauth.taobao.com/";
AuthUrl = url + "authorize?response_type={response_type}&client_id={key}&redirect_uri={redirect}&state={state}&scope={scope}";
AccessUrl = url + "token?grant_type=authorization_code&client_id={key}&client_secret={secret}&code={code}&state={state}&redirect_uri={redirect}";
//UserUrl = "https://openapi.baidu.com/rest/2.0/passport/users/getLoggedInUser?access_token={token}";
LogoutUrl = url + "logoff?client_id={key}&view=web";
}
/// <summary>从响应数据中获取信息</summary>
/// <param name="dic"></param>
protected override void OnGetInfo(IDictionary<String, String> dic)
{
base.OnGetInfo(dic);
if (dic.ContainsKey("taobao_user_id")) UserID = dic["taobao_user_id"].Trim('\"').ToLong();
if (dic.ContainsKey("taobao_user_nick")) UserName = dic["taobao_user_nick"].Trim();
}
}
}
|