我正在尝试将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店面集成样板(vs bridge)和shopify通信的任何平台上构建一个新应用

这是vs桥中的magento的示例配置(vue店面集成样板){
“elasticsearch”:{
“主机”:“”,
“indexName”:“vue_storefront_magento1”
},
“vsbridge”:{
“url”:“http://example.com:80/”,
“auth”:{
“用户名”:“管理员”,
“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通信
请告诉我是否有人做过

最佳答案

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

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

10-07 18:15
查看更多