eBay配送API未返回送货地址

问题描述 投票:3回答:2

我正在尝试检索未完成订单的地址,但是由于昨天以来的任何原因,它们刚刚停止出现在响应JSON中。访问令牌是新鲜的。那里的其他所有东西都接受地址。对于任何订单。

这是我正在使用的生产GET请求URL。

https://api.ebay.com/sell/fulfillment/v1/order?filter=orderfulfillmentstatus:%7BNOT_STARTED%7CIN_PROGRESS%7D 

昨天我得到...

"fulfillmentStartInstructions": [
     {
         "fulfillmentInstructionsType": "SHIP_TO",
         "minEstimatedDeliveryDate": "2020-05-12T23:00:00.000Z",
         "maxEstimatedDeliveryDate": "2020-05-21T23:00:00.000Z",
         "ebaySupportedFulfillment": false,
         "shippingStep": {
             "shipTo": {
                 "fullName": "####",
                 "contactAddress": {
                     "addressLine1": "####",
                     "addressLine2": "####",
                     "city": "####",
                     "stateOrProvince": "####",
                     "postalCode": "####",
                     "countryCode": "####"
                 },
                 "primaryPhone": {},
                 "email": "####"
             },
             "shippingServiceCode": "UK_StandardShippingFromOutside"
         }
     }
 ] 

还有今天...

"fulfillmentStartInstructions": [
     {
         "fulfillmentInstructionsType": "SHIP_TO",
         "ebaySupportedFulfillment": false
     }
 ] 

缺少。知道为什么会这样吗?

ebay-api ebay-sdk
2个回答
1
投票

在这里也一样,较早的eBay交易getorders仍然可以正常工作

https://developer.ebay.com/devzone/xml/docs/reference/ebay/getorders.html

© www.soinside.com 2019 - 2024. All rights reserved.