首页 > 解决方案 > 订单未从 shopify 同步到我的 shopify 应用

问题描述

当客户在没有电子邮件地址且仅提供手机号码的情况下下订单时,订单不会从 shopify 同步到我的 shopify 应用程序。我该如何解决这个问题,以便我的 shopify-app 收到使用手机号码的订单?

标签: node.jsshopify-app

解决方案


You can use shopify webhooks, Webhooks are a useful tool for apps that want to execute code after a specific event occurs on a shop, for example, when customer create order from frontend then shopify will notify you via json/xml response if you create order/create webhook for merchant store. It does not depend on email or mobile number. You can manage order response according to your logic in your shopify-app.

How to create webhook for app : https://help.shopify.com/en/api/reference/events/webhook

Please elaborate if you need any further help. Thanks!!


推荐阅读