판매자 API를 사용하여 제품을 프로그래매틱 방식으로 업로드하고 관리할 수 있습니다. accounts.products 리소스를 사용하면 제품 및 혜택 목록인 온라인 상점 카탈로그를 만들 수 있습니다. 판매자 API를 사용한 제품 업로드 및 관리에 대한 자세한 내용은 판매자 제품 API 개요를 참조하세요.
다음은 Content API for Shopping과 Merchant Products API를 비교한 샘플입니다.
|
Content API for Shopping |
판매자 제품 API |
설명 |
URL |
https://shoppingcontent.googleapis.com/content/v2.1/ {merchantId}/products/
|
https://merchantapi.googleapis.com/products/v1beta/ {parent}/productInputs:insert
|
판매자 API 요청 URL의 {parent} 변수는 계정의 고유 식별자를 나타냅니다.
|
식별자 |
{id} |
{name} |
|
방법
다음은 Content API for Shopping과 Merchant Products API의 제품 메서드를 비교한 것입니다.
메서드 |
Content API for Shopping |
판매자 제품 API |
customBatch |
예 |
아니요 |
insert |
예 |
예 |
get |
예 |
예 |
update |
예 |
사용할 수 없음 |
delete |
예 |
예 |
list |
예 |
예 |
다음은 Content API for Shopping과 Merchant Products API의 GET
메서드를 비교한 샘플입니다.
Content API for Shopping |
판매자 API |
GET https://shoppingcontent.googleapis.com/content/v2.1/ {accountId}/products/ {productId} |
GET https://merchantapi.googleapis.com/products/v1beta/ {name=accounts/*/products/*} |
요청
메서드 |
Content API for Shopping의 URL |
판매자 제품 API의 URL |
Content API의 식별자 |
판매자 제품 API의 식별자 |
insert |
POST https://shoppingcontent.googleapis.com/content/v2.1/ {merchantId}/products |
POST https://merchantapi.googleapis.com/products/v1beta/ {parent}/productsInputs:insert?dataSource={dataSourceName} |
{merchantId} |
{parent} |
update |
PATCH https://shoppingcontent.googleapis.com/content/v2.1/ {merchantId}/products/ {productId} |
사용할 수 없음 |
|
|
delete |
DELETE https://shoppingcontent.googleapis.com/content/v2.1/ {merchantId}/products/ {productId} |
DELETE https://merchantapi.googleapis.com/products/v1beta/{name=accounts/*/productInputs/*}?dataSource={dataSourceName} |
{merchantId}/datafeeds/ {productId} |
{name=accounts/*/productInputs/*} |
get |
GET https://shoppingcontent.googleapis.com/content/v2.1/ {merchantId}/products/ {productId} |
GET https://merchantapi.googleapis.com/products/v1beta/{name=accounts/*/products/*} |
{merchantId}/datafeeds/ {productId} |
{name=accounts/*/products/*} |
list |
GET https://shoppingcontent.googleapis.com/content/v2.1/ {merchantId}/products |
GET https://merchantapi.googleapis.com/products/v1beta/ {parent=accounts/*}/products |
{merchantId} |
{parent=accounts/*} |
리소스
Content API for Shopping |
판매자 제품 API |
설명 |
|
|
Content API for Shopping의 Product 리소스에 있던 여러 필드가 판매자 제품 API의 ProductInput 리소스에 있는 Attribute 필드로 이동했습니다.
|