SOAP/WSDL示例
开发中POST
https://api.sandbox.ebay.com/wsapiWebService 使用注意点
- Apifox 需升级到
2.1.31
及以上版本 - 需手动设置 Header
Content-Type
的值为application/soap+xml
或text/xml; charset=utf-8
(根据实际情况来) - 设置 Body 格式为
xml
- 返回响应的内容格式为
XML
请求参数
Query 参数
siteid
string
必需
示例值:
0
routing
string
必需
示例值:
beta
callname
string
必需
示例值:
GeteBayOfficialTime
client
string
必需
示例值:
java
version
string
必需
示例值:
423
appid
string
必需
示例值:
INDEPENDENV14L9185124FNLW855JL
Header 参数
Content-Type
string
必需
示例值:
application/soap+xml
Body 参数application/xml
object {0}
示例
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header>
<ebl:RequesterCredentials soapenv:mustUnderstand="0" xmlns:ebl="urn:ebay:apis:eBLBaseComponents">
<ebl:eBayAuthToken xmlns:ebl="urn:ebay:apis:eBLBaseComponents">token</ebl:eBayAuthToken>
</ebl:RequesterCredentials>
</soapenv:Header>
<soapenv:Body>
<GeteBayOfficialTimeRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<DetailLevel>ReturnAll</DetailLevel>
<Version>423</Version>
</GeteBayOfficialTimeRequest>
</soapenv:Body>
</soapenv:Envelope>
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: XMLapplication/xml
数据结构
object {0}
示例
<?xml version="1.0" encoding="UTF-8"?>
<root/>
最后修改时间: 2 年前