摘要:
jwt数据结构为 1.header头:{"type":"JWT"} 2.payload:有效载荷 3.signature签名 防止篡改 服务器和客户端jwt交互过程 服务器给出token的时候: 1.前提:账号密码验证通过 得到用户信息或者其他信息(过期时间等) 往header或者payload里面 阅读全文
摘要:
public class HttpHelpe { public static async Task<T> GetAsync<T>(string url, string postData = null, string contentType = null, int timeOut = 30, Dict 阅读全文