繁体   English   中英

shopify webhooks中的订单ID

[英]Order ID in shopify webhooks

我正在尝试将我的应用程序与shopify商店集成。 到目前为止,我已经配置了webhooks以在某些系统事件(例如创建订单)上将数据发送到我的应用程序。

除了一个例外,一切工作都非常好-我不明白如何从这些Webhooks中获取订单ID。 它们中没有任何看起来像订单ID的参数,我以后需要在任何请求中使用这些参数来购物API来检索有关订单的信息

示例webhook(创建订单的事件):

{
  "id": 488245657691,
  "email": "",
  "closed_at": null,
  "created_at": "2018-05-10T14:05:02-04:00",
  "updated_at": "2018-05-10T14:05:03-04:00",
  "number": 6,
  "note": "raz dwa trzy",
  "token": "xxx",
  "gateway": "manual",
  "test": false,
  "total_price": "2000.00",
  "subtotal_price": "2000.00",
  "total_weight": 0,
  "total_tax": "373.98",
  "taxes_included": true,
  "currency": "PLN",
  "financial_status": "paid",
  "confirmed": true,
  "total_discounts": "0.00",
  "total_line_items_price": "2000.00",
  "cart_token": null,
  "buyer_accepts_marketing": false,
  "name": "#1006",
  "referring_site": null,
  "landing_site": null,
  "cancelled_at": null,
  "cancel_reason": null,
  "total_price_usd": "555.69",
  "checkout_token": null,
  "reference": null,
  "user_id":"",
  "location_id":"",
  "source_identifier": null,
  "source_url": null,
  "processed_at": "2018-05-10T14:05:02-04:00",
  "device_id": null,
  "phone": null,
  "customer_locale": null,
  "app_id": "",
  "browser_ip": null,
  "landing_site_ref": null,
  "order_number": 1006,
  "discount_codes": [],
  "note_attributes": [],
  "payment_gateway_names": [
    "manual"
  ],
  "processing_method": "manual",
  "checkout_id": null,
  "source_name": "shopify_draft_order",
  "fulfillment_status": null,
  "tax_lines": [
    {
      "title": "VAT",
      "price": "373.98",
      "rate": 0.23
    }
  ],
  "tags": "",
  "contact_email": null,
  "order_status_url": "",
  "line_items": [
    {
      "id": 1241199411291,
      "variant_id": 8135591723099,
      "title": "Above elbow glass",
      "quantity": 1,
      "price": "2000.00",
      "sku": "",
      "variant_title": null,
      "vendor": "",
      "fulfillment_service": "manual",
      "product_id": 750373666907,
      "requires_shipping": true,
      "taxable": true,
      "gift_card": false,
      "name": "Above elbow glass",
      "variant_inventory_management": null,
      "properties": [],
      "product_exists": true,
      "fulfillable_quantity": 1,
      "grams": 0,
      "total_discount": "0.00",
      "fulfillment_status": null,
      "tax_lines": [
        {
          "title": "VAT",
          "price": "373.98",
          "rate": 0.23
        }
      ]
    }
  ],
  "shipping_lines": [],
  "fulfillments": [],
  "refunds": []
}

看起来唯一方便的参数是tokenorder_number但是token可能也不是我想要的东西,就像order_number 第三个是id根据shopify文档, id是Webhook ID,而不是订单ID。 您对我如何从Webhook获取此类订单ID有任何想法吗?

就像Webhook来自的域一样,订单ID在标题中。 那会帮助你。 只需从那里获取订单ID,然后继续。

例:

domain = request.env['HTTP_X_SHOPIFY_SHOP_DOMAIN']
order_id = request.env['HTTP_X_SHOPIFY_ORDER_ID']

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM