3

我正在尝试将 vuestorefront 与 shopify 集成,但无法理解
正确的方式
有许多存储库,例如
前端的vue 店面
https://github.com/DivanteLtd/vue-storefront
vue 店面 API 用于后端
https://github.com /DivanteLtd/vue-storefront-api
用于第 3 方集成的 vue 店面集成样板(在我们的例子中为 Shopify)
https://github.com/DivanteLtd/vue-storefront-integration-boilerplate
这就是我所知道的
我在 vue 店面中遇到的问题集成样板
无法找到与 shopify
文档进行通信的方式说
我需要在任何平台上构建一个新应用程序,该应用程序将与 vue 店面集成样板(vs bridge)和 shopify 进行通信

这是 magento 在 vs 桥中的示例配置(vue 店面集成样板)

{
    “弹性搜索”:{
        “主持人”: ””,
        “indexName”:“vue_storefront_magento1”
    },
    “vsbridge”:{
        "url": " http://example.com:80/ ",
        “认证”:{
            “用户名”:“管理员”,
            “密码”:“密码123”,
            “秘密”:“Geiw0qua”
        },
        “auth_endpoint”:“ http://example.com/vsbridge/auth/admin ”,
        “product_endpoint”:“ http://example.com/vsbridge/products/index ”,
        “category_endpoint”:“ http://example.com/vsbridge/categories/index ”,
        “taxrule_endpoint”:“ http://example.com/vsbridge/taxrules/index ”,
} }
我需要此配置文件中的帮助才能与 shopify 通信
请告诉我是否有人这样做

4

1 回答 1

4

我看到的方式是创建一个“中间件”应用程序并将其放置在某个地方。此应用程序应基于集成样板示例构建,并服务器从 Shopify API 获取的数据。

当这个“中间件”或“桥”应用程序完成时。可以将其连接到 VueStorefront 作为 vue-storefront-api 替代品。在 vue 店面配置中,您不会向 vue-storefront-api 提供 URL,而是向您自己的应用程序 URL 提供 URL。

于 2019-02-08T15:29:05.957 回答