如何从另一个网站将产品添加到 shopify 商店?
How can I add product to shopify store from another website?
我想使用 API 从另一个网站(可能)将产品添加到 Shopify 商店。我没有找到执行此操作的请求 URL。请帮我做到。我用 PHP (Laravel 框架)
写这个网站
要创建新产品,您可以使用 Product REST API
示例:
POST /admin/api/2020-07/products.json
{
"product": {
"title": "Burton Custom Freestyle 151",
"body_html": "<strong>Good snowboard!</strong>",
"vendor": "Burton",
"product_type": "Snowboard",
"metafields": [
{
"key": "new",
"value": "newvalue",
"value_type": "string",
"namespace": "global"
}
]
}
}
请注意,对于此类操作,您需要具有 write_products
范围
我想使用 API 从另一个网站(可能)将产品添加到 Shopify 商店。我没有找到执行此操作的请求 URL。请帮我做到。我用 PHP (Laravel 框架)
写这个网站要创建新产品,您可以使用 Product REST API
示例:
POST /admin/api/2020-07/products.json
{
"product": {
"title": "Burton Custom Freestyle 151",
"body_html": "<strong>Good snowboard!</strong>",
"vendor": "Burton",
"product_type": "Snowboard",
"metafields": [
{
"key": "new",
"value": "newvalue",
"value_type": "string",
"namespace": "global"
}
]
}
}
请注意,对于此类操作,您需要具有 write_products
范围