有大佬知道這種接口文件怎么使用嗎?
問題描述
1.接口說明
授權 ID 與授權賬號聯系寶通達業務獲取
請求地址:http://open.btdair.com:8099/LogisticsService.svc?
wsdl 請求方式:POST
Header 中包含:
Content-Type: text/xml; charset=utf-8
SOAPAction: "http://tempuri.org/ILogisticsService/方法名"
錯誤示例:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body> <s:Fault> <faultcode>s:Client</faultcode> <faultstring xml:lang="zh-CN">錯誤消息</faultstring> <detail>
<FaultMessage xmlns="http://schemas.datacontract.org/2004/07/JSON.Logistics.Emmis.Entity"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Message>錯誤消息</Message> <Type>消息格式(Normal:普通;Unlicensed:無效授權)</Type>
</FaultMessage>
</detail>
</s:Fault>
</s:Body>
</s:Envelope> 2.驗證用戶是否有效
方法名:Verify
提交數據: <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body> <Verify xmlns="http://tempuri.org/"> <clientId>授權ID</clientId> <clientAccount>授權名稱</clientAccount>
</Verify>
</s:Body>
</s:Envelope>
返回數據(錯誤請參考最上方錯誤示例): <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body> <VerifyResponse xmlns="http://tempuri.org/"> <VerifyResult>true|false</VerifyResult>
</VerifyResponse>
</s:Body>
</s:Envelope>
3.獲取物流方式
方法名:GetLogisticsWay
提交數據: <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Body> <GetLogisticsWay xmlns="http://tempuri.org/"/>
</s:Body>
</s:Envelope>
返回數據(錯誤請參考最上方錯誤示例): <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body> <GetLogisticsWayResponse xmlns="http://tempuri.org/">
<GetLogisticsWayResult xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <a:string>渠道,例:xianggangDHL普貨</a:string> <a:string>FedEx</a:string> <a:string>瑞典掛號</a:string> <a:string>新加坡平郵</a:string>
</GetLogisticsWayResult>
</GetLogisticsWayResponse>
</s:Body>
</s:Envelope>
問題解答
回答1:這個API接口應該很好搞 可以***Q 895163012幫你解決
相關文章:
1. javascript - h5 video層級太高導致浮在div上面,如何解決?2. java - 多客戶端如何操作MQ比較合適3. html5 - video ios不能播放怎么辦?4. javascript - 圖片無法正常加載5. python中怎么對列表以區間進行統計?6. mysql - 記得以前在哪里看過一個估算時間的網站7. javascript - 如何獲取未來元素的父元素在頁面中所有相同元素中是第幾個?8. 如何合并兩張具有相同結構的mysql表9. javascript - Ajax加載Json時,移動端頁面向左上角縮小一截兒,加載完成后才正常顯示,這該如何解決?10. mysql ER_BAD_DB_ERROR: Unknown database ’test’
