淘宝开放平台.NET版SDK top4net

码农软件 · 软件分类 · 其他开发相关 · 2019-10-29 07:59:01

软件介绍

设计原则

   1. 容易维护扩展(不需要修改主类就可以添加新的API支持)
   2. 注入型解释器(依据不同的返回格式注入相应的解释器)
   3. 集中管理请求参数与参数映射
   4. 以异常的方式来管理错误的响应
   5. 使用泛型来做强类型编程
   6. 多协议扩展支持(REST, RPC, SOAP, etc)

调用方式:

 ITopClient client = new TopRestClient("http://gw.api.tbsandbox.com/router/rest", "test", "test", "json");
 UserGetRequest request = new UserGetRequest();
 request.Fields = "user_id,nick,sex,created,location";
 request.Nick = "tbtest520";
 User user = client.Execute(request, new UserGetJsonParser());

本文地址:https://codercto.com/soft/d/17796.html

Deep Learning

Deep Learning

Ian Goodfellow、Yoshua Bengio、Aaron Courville / The MIT Press / 2016-11-11 / USD 72.00

"Written by three experts in the field, Deep Learning is the only comprehensive book on the subject." -- Elon Musk, co-chair of OpenAI; co-founder and CEO of Tesla and SpaceX Deep learning is a for......一起来看看 《Deep Learning》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

SHA 加密
SHA 加密

SHA 加密工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换