我们可以使用 BigCommrce legacy API 的 webhooks 吗?
Can we use webhooks using BigCommrce legacy API?
我想在 bigcommerce 上使用产品 webhook,这样每当在 Bigcommerce 系统中添加产品时,它 post 返回到 url 及其详细信息。
我的问题是我可以使用 Legacy API(私有应用程序)使用它吗?
来自 BigCommerce WebHooks: Getting Started
PRO TIP: Webhooks differ from the rest of the Stores API as follows:
* OAuth is required: Basic Authentication is not supported.
* Self-signed certificates are not supported.
* JSON is required; XML is not supported.
旧版 API 及其密钥使用不受支持的基本身份验证。很遗憾,您不能通过旧版 API.
使用 WebHooks
您可以使用 OAuth 注册一个 webhook 并将它的挂钩点指向 URL,它确实可以使用 Legacy API,但是如果您使用带有有效令牌的 OAuth,它会很好无论如何,这都违背了将其路由到旧版应用程序的目的。保存一个太大或非模块化的应用程序以适应 OAuth。
我想在 bigcommerce 上使用产品 webhook,这样每当在 Bigcommerce 系统中添加产品时,它 post 返回到 url 及其详细信息。 我的问题是我可以使用 Legacy API(私有应用程序)使用它吗?
来自 BigCommerce WebHooks: Getting Started
PRO TIP: Webhooks differ from the rest of the Stores API as follows:
* OAuth is required: Basic Authentication is not supported.
* Self-signed certificates are not supported.
* JSON is required; XML is not supported.
旧版 API 及其密钥使用不受支持的基本身份验证。很遗憾,您不能通过旧版 API.
使用 WebHooks您可以使用 OAuth 注册一个 webhook 并将它的挂钩点指向 URL,它确实可以使用 Legacy API,但是如果您使用带有有效令牌的 OAuth,它会很好无论如何,这都违背了将其路由到旧版应用程序的目的。保存一个太大或非模块化的应用程序以适应 OAuth。