All checks were successful
Publish to Confluence / confluence (push) Successful in 57s
2.3 KiB
2.3 KiB
eBay接入指南
eBay授权流程
授权码授权流程
访问令牌获取限制
访问令牌注意事项
- 由于访问令牌获取限制,如果用户数量过多时,需要有多个应用来承载
- 所以设计时需要考虑该问题
- 后续运维也需要注意该问题
接口梳理
授权接口
获取授权链接
- 文档:https://developer.ebay.com/api-docs/static/oauth-consent-request.html
- 接口:GET /oauth2/authorize
获取AccessToken
- 文档:https://developer.ebay.com/api-docs/static/oauth-auth-code-grant-request.html
- 接口:POST /identity/v1/oauth2/token
根据RefreshToken获取AccessToken
- 文档:https://developer.ebay.com/api-docs/static/oauth-refresh-token-request.html
- 接口:POST /identity/v1/oauth2/token
拉单接口
- 文档:https://developer.ebay.com/api-docs/sell/fulfillment/resources/order/methods/getOrders
- 接口:GET /sell/fulfillment/v1/order
发货接口
- 文档:https://developer.ebay.com/api-docs/sell/fulfillment/resources/order/shipping_fulfillment/methods/createShippingFulfillment
- 接口:POST /sell/fulfillment/v1/order/{orderId}/shipping_fulfillment