我正在尝试将vuestorefront与shopify集成在一起,但无法理解
正确的方法
有很多类似
的存储库
前端的Vue店面
https://github.com/DivanteLtd/vue-storefront
后端的Vue店面api
https://github.com/DivanteLtd/vue-storefront-api
用于第三方集成的vue店面集成样板(在我们的案例中为Shopify)
https://github.com/DivanteLtd/vue-storefront-integration-boilerplate
这就是我所知道的
我在Vue店面集成样板中遇到问题
无法找到与shopify通信的方法
文档说的是
我需要在任何可与vue店面集成样板(相对于桥梁)进行通信并进行Shopify
这是vs桥中的magento的示例配置(vue店面集成样板)
{ "elasticsearch": { "host": "", "indexName": "vue_storefront_magento1" }, "vsbridge": { "url": "http://example.com:80/", "auth": { "username": "admin", "password": "password123", "secret": "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通信
} }
答案 0 :(得分:2)
我看到的方式是创建一个“中间件”应用程序并将其放置在某处。该应用应基于集成模板示例构建,并处理从Shopify API获取的数据。
此“中间件”或“桥梁”应用程序完成时。作为vue-storefront-api的替代品,可以将其连接到VueStorefront。 在vue storefront配置中,您不会将URL提供给vue-storefront-api,而是提供给您自己的应用程序URL。