using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WdtSdk; namespace WarehouseQuery { class WarehouseQuery { static void Main(string[] args) { WdtClient client = new WdtClient(); client.sid = ""; client.appkey = ""; client.appsecret = ""; client.gatewayUrl = "http://121.41.177.115/openapi2/warehouse_query.php"; client.putParams("warehouse_no", "5299"); string result = client.wdtOpenapi(); Console.WriteLine(result); Console.ReadKey(); } } }