美客多接口协议学习
授权流程:
授权url:
https://global-selling.mercadolibre.com/authorization?response_type=code&client_id=$APP_ID&redirect_uri=$YOUR_URL获取token
url:curl -X POST -H 'accept: application/json' -H 'content-type: application/x-www-form-urlencoded' https://api.mercadolibre.com/oauth/token?grant_type=authorization_code&client_id=$APP_ID&client_secret=$CLIENT_SECRET&code=$TG_CODE&redirect_uri=$REDIRECT_URL
返参:
{
"access_token": "APP_USR-5387223166827464-090515-8cc4448aac10d5105474e135355a8321-8035443",
"token_type": "bearer",
"expires_in": 10800,
"scope": "offline_access read write",
"user_id":8035443,
"refresh_token": "TG-5b9032b4e4b0714aed1f959f-8035443"
}
刷新token
url:
curl -X POST https://api.mercadolibre.com/oauth/token?grant_type=refresh_token&client_id=$APP_ID&client_secret=$SECRET_KEY&refresh_token=$REFRESH_TOKEN

1. 获取订单
url: https://api.mercadolibre.com/marketplace/orders/$ORDER_ID
请求方式: get
返参:
{
"id": 2000003508419013,
"date_created": "2020-01-31T18:03:35.000-04:00",
"date_closed": "2020-01-31T18:03:36.000-04:00",
"last_updated": "2020-01-31T18:03:36.000-04:00",
"manufacturing_ending_date": null,
"feedback": {
"sale": null,
"purchase": null
},
"mediations": [],
"comments": null,
"pack_id": null,
"pickup_id": null,
"order_request": {
"return": null,
"change": null
},
"fulfilled": null,
"paid_amount": 15.1,
"coupon": {
"id": null,
"amount": 0
},
"expiration_date": "2020-05-10T18:03:36.000-04:00",
"order_items": [
{
"item": {
"id": "MLM754639529",
"title": "Elemento De Prueba - Para Pruebas De Carga",
"category_id": "MLM71792",
"variation_id": null,
"seller_custom_field": null,
"variation_attributes": [],
"condition": "new",
"seller_sku": null,
"parent_item_id": "CBT910504819"
},
"quantity": 1,
"unit_price": 15.1,
"full_unit_price": 15.1,
"currency_id": "USD",
"manufacturing_days": null,
"sale_fee": 2.64,
"base_exchange_rate": 19.25
}
],
"currency_id": "USD",
"payments": [
{
"id": 5855860136,
"order_id": 2000003508419013,
"payer_id": 441782523,
"collector": {
"id": 481240836
},
"card_id": 8738685222,
"site_id": "MLM",
"reason": "Elemento De Prueba - Para Pruebas De Carga",
"payment_method_id": "amex",
"currency_id": "USD",
"installments": 1,
"issuer_id": "157",
"atm_transfer_reference": {
"company_id": null,
"transaction_id": "1234567"
},
"coupon_id": null,
"activation_uri": null,
"operation_type": "regular_payment",
"payment_type": "credit_card"
