یک موجودی محلی را حذف کنید
با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
نمونه کد API Merchant برای حذف موجودی محلی.
جاوا
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package shopping.merchant.samples.inventories.v1;
import com.google.api.gax.core.FixedCredentialsProvider;
import com.google.auth.oauth2.GoogleCredentials;
import com.google.shopping.merchant.inventories.v1.DeleteLocalInventoryRequest;
import com.google.shopping.merchant.inventories.v1.LocalInventoryName;
import com.google.shopping.merchant.inventories.v1.LocalInventoryServiceClient;
import com.google.shopping.merchant.inventories.v1.LocalInventoryServiceSettings;
import shopping.merchant.samples.utils.Authenticator;
import shopping.merchant.samples.utils.Config;
/** This class demonstrates how to delete a Local inventory for a given product */
public class DeleteLocalInventorySample {
public static void deleteLocalInventory(Config config, String productId, String storeCode)
throws Exception {
GoogleCredentials credential = new Authenticator().authenticate();
LocalInventoryServiceSettings localInventoryServiceSettings =
LocalInventoryServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(credential))
.build();
String name =
LocalInventoryName.newBuilder()
.setAccount(config.getAccountId().toString())
.setProduct(productId)
.setStoreCode(storeCode)
.build()
.toString();
try (LocalInventoryServiceClient localInventoryServiceClient =
LocalInventoryServiceClient.create(localInventoryServiceSettings)) {
DeleteLocalInventoryRequest request =
DeleteLocalInventoryRequest.newBuilder().setName(name).build();
System.out.println("Sending deleteLocalInventory request");
localInventoryServiceClient.deleteLocalInventory(request); // no response returned on success
System.out.println(
"Delete successful, note that it may take up to 30 minutes for the delete to update in"
+ " the system.");
} catch (Exception e) {
System.out.println(e);
}
}
public static void main(String[] args) throws Exception {
Config config = Config.load();
// An ID assigned to a product by Google. In the format
// channel:contentLanguage:feedLabel:offerId
String productId = "local:en:label:1111111111";
// The ID uniquely identifying each region.
String storeCode = "EXAMPLE";
deleteLocalInventory(config, productId, storeCode);
}
}
PHP
<?php
/**
* Copyright 2023 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
require_once __DIR__ . '/../../../vendor/autoload.php';
require_once __DIR__ . '/../../Authentication/Authentication.php';
use Google\ApiCore\ApiException;
use Google\Shopping\Merchant\Inventories\V1\Client\LocalInventoryServiceClient;
use Google\Shopping\Merchant\Inventories\V1\DeleteLocalInventoryRequest;
/**
* Deletes the specified `LocalInventory` resource from the given product
* in your merchant account. It might take up to an hour for the
* `LocalInventory` to be deleted from the specific product.
* Once you have received a successful delete response, wait for that
* period before attempting a delete again.
*/
class DeleteLocalInventory
{
// ENSURE you fill in the merchant account, product, and region ID for the
// sample to work.
private const ACCOUNT = 'INSERT_ACCOUNT_ID_HERE';
private const PRODUCT = 'INSERT_PRODUCT_ID_HERE';
private const STORE_CODE = 'INSERT_STORE_CODE_HERE';
/**
* Deletes a specific local inventory of a given product.
*
* @param string $formattedName The name of the `LocalInventory` resource
* to delete.
* Format: `accounts/{account}/products/{product}/localInventories/{store_code}`
* Please see {@see LocalInventoryServiceClient::localInventoryName()}
* for help formatting this field.
*/
function deleteLocalInventorySample(string $formattedName): void
{
// Gets the OAuth credentials to make the request.
$credentials = Authentication::useServiceAccountOrTokenFile();
// Creates options config containing credentials for the client to use.
$options = ['credentials' => $credentials];
// Creates a client.
$localInventoryServiceClient = new LocalInventoryServiceClient($options);
// Prepare the request message.
$request = (new DeleteLocalInventoryRequest())
->setName($formattedName);
// Calls the API and catches and prints any network failures/errors.
try {
$localInventoryServiceClient->deleteLocalInventory($request);
print 'Delete call completed successfully.' . PHP_EOL;
} catch (ApiException $ex) {
printf('Call failed with message: %s%s', $ex->getMessage(), PHP_EOL);
}
}
/**
* Helper to execute the sample.
*/
function callSample(): void
{
// These variables are defined at the top of the file.
$formattedName = LocalInventoryServiceClient::localInventoryName(
$this::ACCOUNT,
$this::PRODUCT,
$this::STORE_CODE
);
// Deletes the specific local inventory of the parent product.
$this->deleteLocalInventorySample($formattedName);
}
}
$sample = new DeleteLocalInventory();
$sample->callSample();
پایتون
# -*- coding: utf-8 -*-
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""A module to delete a Local Inventory."""
from examples.authentication import configuration
from examples.authentication import generate_user_credentials
from google.shopping import merchant_inventories_v1
# ENSURE you fill in the product ID and store code
# for the sample to work.
_ACCOUNT = configuration.Configuration().read_merchant_info()
_PRODUCT = "[INSERT_PRODUCT_HERE]"
_STORE_CODE = "[INSERT_STORE_CODE_HERE]"
_NAME = (f"accounts/{_ACCOUNT}/products/{_PRODUCT}/localInventories/"
f"{_STORE_CODE}")
def delete_local_inventory():
"""Deletes the specified `LocalInventory` resource from the given product.
It might take up to an hour for the `LocalInventory` to be deleted
from the specific product. Once you have received a successful delete
response, wait for that period before attempting a delete again.
"""
# Gets OAuth Credentials.
credentials = generate_user_credentials.main()
# Creates a client.
client = merchant_inventories_v1.LocalInventoryServiceClient(
credentials=credentials)
# Creates the request.
request = merchant_inventories_v1.DeleteLocalInventoryRequest(name=_NAME)
# Makes the request and catch and print any error messages.
try:
client.delete_local_inventory(request=request)
print("Delete successful")
except RuntimeError as e:
print("Delete failed")
print(e)
if __name__ == "__main__":
delete_local_inventory()
جز در مواردی که غیر از این ذکر شده باشد،محتوای این صفحه تحت مجوز Creative Commons Attribution 4.0 License است. نمونه کدها نیز دارای مجوز Apache 2.0 License است. برای اطلاع از جزئیات، به خطمشیهای سایت Google Developers مراجعه کنید. جاوا علامت تجاری ثبتشده Oracle و/یا شرکتهای وابسته به آن است.
تاریخ آخرین بهروزرسانی 2025-08-21 بهوقت ساعت هماهنگ جهانی.
[null,null,["تاریخ آخرین بهروزرسانی 2025-08-21 بهوقت ساعت هماهنگ جهانی."],[[["\u003cp\u003eThis page provides code samples in Java, cURL, PHP, and Python demonstrating how to remove a local inventory for a product.\u003c/p\u003e\n"],["\u003cp\u003eThe samples cover the process of deleting a \u003ccode\u003eLocalInventory\u003c/code\u003e resource associated with a specific product in a merchant account.\u003c/p\u003e\n"],["\u003cp\u003eIt's important to note that after a successful deletion, it may take up to an hour for the changes to be fully reflected.\u003c/p\u003e\n"]]],["The code samples demonstrate how to delete a local inventory for a product using the Merchant API in Java, PHP, and Python. Key actions include authenticating via OAuth credentials, creating a `LocalInventoryServiceClient`, and constructing a `DeleteLocalInventoryRequest` with the product's formatted name, including the account, product ID, and store code. Finally the code sends the request to delete the inventory, and confirms a successful execution of the operation. It is also stated that it can take up to 30 minutes to update.\n"],null,["# Delete a local inventory\n\nMerchant API code sample to delete a local inventory. \n\n### Java\n\n // Copyright 2023 Google LLC\n //\n // Licensed under the Apache License, Version 2.0 (the \"License\");\n // you may not use this file except in compliance with the License.\n // You may obtain a copy of the License at\n //\n // https://www.apache.org/licenses/LICENSE-2.0\n //\n // Unless required by applicable law or agreed to in writing, software\n // distributed under the License is distributed on an \"AS IS\" BASIS,\n // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n // See the License for the specific language governing permissions and\n // limitations under the License.\n\n package shopping.merchant.samples.inventories.v1;\n import com.google.api.gax.core.FixedCredentialsProvider;\n import com.google.auth.oauth2.GoogleCredentials;\n import com.google.shopping.merchant.inventories.v1.DeleteLocalInventoryRequest;\n import com.google.shopping.merchant.inventories.v1.LocalInventoryName;\n import com.google.shopping.merchant.inventories.v1.LocalInventoryServiceClient;\n import com.google.shopping.merchant.inventories.v1.LocalInventoryServiceSettings;\n import shopping.merchant.samples.utils.Authenticator;\n import shopping.merchant.samples.utils.Config;\n\n /** This class demonstrates how to delete a Local inventory for a given product */\n public class DeleteLocalInventorySample {\n\n public static void deleteLocalInventory(Config config, String productId, String storeCode)\n throws Exception {\n GoogleCredentials credential = new Authenticator().authenticate();\n\n LocalInventoryServiceSettings localInventoryServiceSettings =\n LocalInventoryServiceSettings.newBuilder()\n .setCredentialsProvider(FixedCredentialsProvider.create(credential))\n .build();\n\n String name =\n LocalInventoryName.newBuilder()\n .setAccount(config.getAccountId().toString())\n .setProduct(productId)\n .setStoreCode(storeCode)\n .build()\n .toString();\n\n try (LocalInventoryServiceClient localInventoryServiceClient =\n LocalInventoryServiceClient.create(localInventoryServiceSettings)) {\n DeleteLocalInventoryRequest request =\n DeleteLocalInventoryRequest.newBuilder().setName(name).build();\n\n System.out.println(\"Sending deleteLocalInventory request\");\n localInventoryServiceClient.deleteLocalInventory(request); // no response returned on success\n System.out.println(\n \"Delete successful, note that it may take up to 30 minutes for the delete to update in\"\n + \" the system.\");\n } catch (Exception e) {\n System.out.println(e);\n }\n }\n\n public static void main(String[] args) throws Exception {\n Config config = Config.load();\n // An ID assigned to a product by Google. In the format\n // channel:contentLanguage:feedLabel:offerId\n String productId = \"local:en:label:1111111111\";\n // The ID uniquely identifying each region.\n String storeCode = \"EXAMPLE\";\n\n deleteLocalInventory(config, productId, storeCode);\n }\n } \n https://github.com/google/merchant-api-samples/blob/c6de994268c785ce22af0065932518a9ac5b3c03/java/src/main/java/shopping/merchant/samples/inventories/v1/DeleteLocalInventorySample.java\n\n### PHP\n\n \u003c?php\n\n /**\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n require_once __DIR__ . '/../../../vendor/autoload.php';\n require_once __DIR__ . '/../../Authentication/Authentication.php';\n use Google\\ApiCore\\ApiException;\n use Google\\Shopping\\Merchant\\Inventories\\V1\\Client\\LocalInventoryServiceClient;\n use Google\\Shopping\\Merchant\\Inventories\\V1\\DeleteLocalInventoryRequest;\n\n /**\n * Deletes the specified `LocalInventory` resource from the given product\n * in your merchant account. It might take up to an hour for the\n * `LocalInventory` to be deleted from the specific product.\n * Once you have received a successful delete response, wait for that\n * period before attempting a delete again.\n */\n\n class DeleteLocalInventory\n {\n\n // ENSURE you fill in the merchant account, product, and region ID for the\n // sample to work.\n private const ACCOUNT = 'INSERT_ACCOUNT_ID_HERE';\n private const PRODUCT = 'INSERT_PRODUCT_ID_HERE';\n private const STORE_CODE = 'INSERT_STORE_CODE_HERE';\n\n /**\n * Deletes a specific local inventory of a given product.\n *\n * @param string $formattedName The name of the `LocalInventory` resource\n * to delete.\n * Format: `accounts/{account}/products/{product}/localInventories/{store_code}`\n * Please see {@see LocalInventoryServiceClient::localInventoryName()}\n * for help formatting this field.\n */\n function deleteLocalInventorySample(string $formattedName): void\n {\n // Gets the OAuth credentials to make the request.\n $credentials = Authentication::useServiceAccountOrTokenFile();\n\n // Creates options config containing credentials for the client to use.\n $options = ['credentials' =\u003e $credentials];\n\n // Creates a client.\n $localInventoryServiceClient = new LocalInventoryServiceClient($options);\n\n // Prepare the request message.\n $request = (new DeleteLocalInventoryRequest())\n -\u003esetName($formattedName);\n\n // Calls the API and catches and prints any network failures/errors.\n try {\n $localInventoryServiceClient-\u003edeleteLocalInventory($request);\n print 'Delete call completed successfully.' . PHP_EOL;\n } catch (ApiException $ex) {\n printf('Call failed with message: %s%s', $ex-\u003egetMessage(), PHP_EOL);\n }\n }\n\n /**\n * Helper to execute the sample.\n */\n function callSample(): void\n {\n // These variables are defined at the top of the file.\n $formattedName = LocalInventoryServiceClient::localInventoryName(\n $this::ACCOUNT,\n $this::PRODUCT,\n $this::STORE_CODE\n );\n\n // Deletes the specific local inventory of the parent product.\n $this-\u003edeleteLocalInventorySample($formattedName);\n }\n }\n\n\n $sample = new DeleteLocalInventory();\n $sample-\u003ecallSample(); \n https://github.com/google/merchant-api-samples/blob/c6de994268c785ce22af0065932518a9ac5b3c03/php/examples/inventories/v1/DeleteLocalInventorySample.php\n\n### Python\n\n # -*- coding: utf-8 -*-\n # Copyright 2024 Google LLC\n #\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \"\"\"A module to delete a Local Inventory.\"\"\"\n\n from examples.authentication import configuration\n from examples.authentication import generate_user_credentials\n from google.shopping import merchant_inventories_v1\n\n # ENSURE you fill in the product ID and store code\n # for the sample to work.\n _ACCOUNT = configuration.Configuration().read_merchant_info()\n _PRODUCT = \"[INSERT_PRODUCT_HERE]\"\n _STORE_CODE = \"[INSERT_STORE_CODE_HERE]\"\n _NAME = (f\"accounts/{_ACCOUNT}/products/{_PRODUCT}/localInventories/\"\n f\"{_STORE_CODE}\")\n\n\n def delete_local_inventory():\n \"\"\"Deletes the specified `LocalInventory` resource from the given product.\n\n It might take up to an hour for the `LocalInventory` to be deleted\n from the specific product. Once you have received a successful delete\n response, wait for that period before attempting a delete again.\n \"\"\"\n\n # Gets OAuth Credentials.\n credentials = generate_user_credentials.main()\n\n # Creates a client.\n client = merchant_inventories_v1.LocalInventoryServiceClient(\n credentials=credentials)\n\n # Creates the request.\n request = merchant_inventories_v1.DeleteLocalInventoryRequest(name=_NAME)\n\n # Makes the request and catch and print any error messages.\n try:\n client.delete_local_inventory(request=request)\n print(\"Delete successful\")\n except RuntimeError as e:\n print(\"Delete failed\")\n print(e)\n\n\n if __name__ == \"__main__\":\n delete_local_inventory()\n\n https://github.com/google/merchant-api-samples/blob/c6de994268c785ce22af0065932518a9ac5b3c03/python/examples/inventories/v1/delete_local_inventory_sample.py"]]