如何将 vuestorefront 与 shopify 集成
how to integrate vuestorefront with shopify
我正在尝试将 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 桥)和 shopify
通信的任何平台上构建一个新应用程序
这是 magento 在 vs bridge 中的示例配置(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
进行通信
有没有人做过请告诉我
我看到的方法是创建一个 "middleware" 应用程序并将其放置在某个地方。此应用程序应基于集成 bolierplate 示例构建,并服务器从 Shopify API.
获取的数据
当此 "middleware" 或 "bridge" 应用完成时。可以将它连接到 VueStorefront 作为 vue-storefront-api 的替代品。
在 vue 店面配置中,您不会提供 vue-storefront-api 的 URL,而是您自己的应用程序 URL。
我正在尝试将 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 桥)和 shopify
这是 magento 在 vs bridge 中的示例配置(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
} }
进行通信 有没有人做过请告诉我
我看到的方法是创建一个 "middleware" 应用程序并将其放置在某个地方。此应用程序应基于集成 bolierplate 示例构建,并服务器从 Shopify API.
获取的数据当此 "middleware" 或 "bridge" 应用完成时。可以将它连接到 VueStorefront 作为 vue-storefront-api 的替代品。 在 vue 店面配置中,您不会提供 vue-storefront-api 的 URL,而是您自己的应用程序 URL。