post请求授权禁用

,
    "wxconfig": {
      "name": "微信config",
      "path": "/bs/api/v3/dev/wechat/config",
      "auth": null
    }

业务特殊需求不需要 不需要 认证 特别对于 post请求

     #region 业务特殊需求不需要  不需要 认证  特别对于 post请求
            Dictionary<string, DataKeyValue> dicRouteBiz = new Dictionary<string, DataKeyValue>();
            List<DataKeyValue> listRouteBiz = new List<DataKeyValue>();
            //使用键值对方式便于继承处理
            configRoot.GetSection("routerBiz").Bind(dicRouteBiz);
            foreach (string key in dicRouteBiz.Keys)
            {
                listRouteBiz.Add(dicRouteBiz[key]);
            }
            var anyNullBiz = listRouteBiz.Where<DataKeyValue>(temp => { return !string.IsNullOrEmpty(temp.Path) && temp.Path != "/" && temp.Auth == null && path.ToLower().Contains(temp.Path.ToLower()); }).Any();
            if (anyNullBiz) return;
            #endregion
文档更新时间: 2021-08-28 08:00   作者:admin