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