মার্চেন্ট এপিআই-এর সাথে ইন্টারঅ্যাক্ট করার এই পদ্ধতিতে, আপনি আগে থেকে তৈরি লাইব্রেরিগুলো ব্যবহার করেন যা রিকোয়েস্ট করা এবং রেসপন্স হ্যান্ডেল করার খুঁটিনাটি বিষয়গুলোকে এনক্যাপসুলেট করে, এবং এপিআই-এর সাথে ইন্টারঅ্যাক্ট করার একটি আরও সুবিধাজনক ও প্রায়শই ল্যাঙ্গুয়েজ-ইডিওম্যাটিক উপায় প্রদান করে। এগুলো অথেনটিকেশন, রিকোয়েস্ট ও রেসপন্সের সিরিয়ালাইজেশন/ডিসেরিয়ালাইজেশন এবং অন্যান্য বয়লারপ্লেট কোড পরিচালনা করে।
ধাপ ১. প্রমাণীকরণ সেট আপ করুন এবং কোড নমুনা কনফিগার করুন
নির্দেশাবলীর জন্য, মার্চেন্ট এপিআই-এর জন্য অথেনটিকেশন সেট আপ করা এবং নমুনা কনফিগারেশন দেখুন।
ধাপ ২. ক্লায়েন্ট লাইব্রেরি এবং কোড স্যাম্পলগুলো ডাউনলোড ও ইনস্টল করুন।
ক্লায়েন্ট লাইব্রেরি ডাউনলোড ও ইনস্টল করার এবং গিটহাব থেকে কোড স্যাম্পলগুলো ব্যবহার করার নির্দেশাবলীর জন্য, Google Merchant API Python Samples দেখুন।
ধাপ ৩. ডেভেলপার হিসেবে নিবন্ধন করুন।
মার্চেন্ট এপিআই ব্যবহার করতে হলে আপনাকে আপনার ডেভেলপার যোগাযোগের তথ্য নিবন্ধন করতে হবে।
নিবন্ধনের মাধ্যমে নিম্নলিখিত কাজগুলো সম্পন্ন হয়:
- কোনো ব্যবহারকারীকে
API developerভূমিকা প্রদান করার মাধ্যমে আপনার মার্চেন্ট সেন্টার অ্যাকাউন্টের জন্য একটি টেকনিক্যাল কন্টাক্ট তৈরি করা হয়। এর ফলে গুগল সেই এপিআই এবং ডেভেলপারের ব্যবহৃত ফিচারগুলো সম্পর্কে গুরুত্বপূর্ণ আপডেট পাঠাতে পারে, যেমন পরিষেবা সংক্রান্ত ঘোষণা এবং নতুন ফিচারের তথ্য, যা নন-ডেভেলপারদের কাছে ততটা আগ্রহের বিষয় নাও হতে পারে। - এটি আপনাকে একাধিকবার নিবন্ধন না করেই একাধিক মার্চেন্ট অ্যাকাউন্ট নিয়ে কাজ করার সুযোগ দেয়। আপনি যখন নিবন্ধন করেন, তখন মার্চেন্ট এপিআই-তে প্রমাণীকরণের জন্য ব্যবহৃত গুগল ক্লাউড প্রজেক্ট আইডিটি আপনার মার্চেন্ট সেন্টার অ্যাকাউন্টের সাথে যুক্ত হয়ে যায়, যেখানে প্রযুক্তিগত যোগাযোগের তথ্য (
API developer) থাকে। এইভাবে, নিবন্ধিত গুগল ক্লাউড প্রজেক্টের মাধ্যমে প্রমাণীকরণ করা হলে, আপনি আপনার পরিচালিত সমস্ত মার্চেন্ট অ্যাকাউন্টের জন্য গুরুত্বপূর্ণ আপডেট পেতে পারেন।
নিবন্ধন করার সময়, নিবন্ধন অংশে বিস্তারিত পূর্বশর্ত এবং সীমাবদ্ধতাগুলো মেনে চলুন।
ক্লায়েন্ট লাইব্রেরি ব্যবহার করে কীভাবে আপনার প্রজেক্ট রেজিস্টার করবেন তার একটি উদাহরণের জন্য, "পাইথন ব্যবহার করে ডেভেলপারের ইমেল ঠিকানা সরবরাহ করে একটি গুগল ক্লাউড প্রজেক্ট রেজিস্টার করুন" নমুনাটি দেখুন:
পাইথন
# -*- coding: utf-8 -*-
# Copyright 2025 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.
"""This example registers a GCP project with a developer email."""
from examples.authentication import configuration
from examples.authentication import generate_user_credentials
from google.shopping.merchant_accounts_v1 import DeveloperRegistrationServiceClient
from google.shopping.merchant_accounts_v1 import RegisterGcpRequest
def register_gcp(account_id: str, developer_email: str) -> None:
"""Registers the GCP project used to call the Merchant API with a developer email.
Args:
account_id: The ID of your Merchant Center account.
developer_email: The email address of the developer to register.
"""
# Get OAuth credentials.
credentials = generate_user_credentials.main()
# Create a client to the Developer Registration Service.
client = DeveloperRegistrationServiceClient(credentials=credentials)
# The name has the format: accounts/{account}/developerRegistration
name = f"accounts/{account_id}/developerRegistration"
# Create the request to register the GCP project.
request = RegisterGcpRequest(
name=name,
developer_email=developer_email,
)
# Make the API call and handle potential errors.
try:
print("Sending RegisterGcp request:")
response = client.register_gcp(request=request)
print("Registered GCP project successfully:")
print(response)
except RuntimeError as e:
print(f"An error occurred: {e}")
if __name__ == "__main__":
# Your Merchant Center account ID.
# This can be found in the Merchant Center UI.
_account_id = configuration.Configuration().read_merchant_info()
# The developer email to associate with the GCP project.
_developer_email = "YOUR_EMAIL_HERE"
register_gcp(_account_id, _developer_email)
ধাপ ৪. ডেভেলপারদের যোগাযোগ এবং অনুমতি পরিচালনা করুন
যখন আপনি নিবন্ধন করবেন:
- যদি ইমেল ঠিকানাটি মার্চেন্ট সেন্টার অ্যাকাউন্টের কোনো ব্যবহারকারীর হয়, তাহলে সেই ব্যবহারকারীকে
API_DEVELOPERরোলটি প্রদান করা হয়। - যদি ইমেল ঠিকানাটি কোনো বিদ্যমান ব্যবহারকারীর না হয়, তাহলে সেই ঠিকানায় একটি আমন্ত্রণ পাঠানো হয়।
API_DEVELOPERরোলসহ নতুন ব্যবহারকারী হিসেবে যুক্ত হওয়ার জন্য প্রাপককে অবশ্যই আমন্ত্রণটি গ্রহণ করতে হবে।
প্রাথমিক নিবন্ধনের পরে, আমরা আপনাকে একাধিক ডেভেলপার যুক্ত করতে এবং তাদের অতিরিক্ত অ্যাক্সেস অধিকার প্রদান করার পরামর্শ দিই।
ধাপ ৪ক. অতিরিক্ত অনুমতি প্রদান করুন
গুরুত্বপূর্ণ নোটিফিকেশন পাওয়ার জন্য API_DEVELOPER রোলটি প্রয়োজন, কিন্তু মার্চেন্ট সেন্টারের মধ্যে এর অনুমতি খুবই সীমিত। এই ব্যবহারকারীকে অন্যান্য API কল করতে বা মার্চেন্ট সেন্টার UI-তে সেটিংস পরিচালনা করার অনুমতি দিতে, আপনাকে তাকে STANDARD বা ADMIN মতো অতিরিক্ত রোল প্রদান করতে হবে। আরও তথ্যের জন্য, অ্যাক্সেস টাইপস দেখুন।
আপনি accounts.users.patch মেথড ব্যবহার করে একজন ব্যবহারকারীর অ্যাক্সেস অধিকার আপডেট করতে পারেন।
নমুনা কোডটিতে দেখানো হয়েছে কীভাবে একজন ব্যবহারকারীকে ADMIN এবং API_DEVELOPER উভয় রোল প্রদান করার জন্য আপডেট করতে হয়। এর ফলে তিনি অ্যাকাউন্টটি সম্পূর্ণরূপে পরিচালনা করতে পারবেন এবং API-সম্পর্কিত যোগাযোগও গ্রহণ করতে পারবেন।
পাইথন
# -*- 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 update a user."""
from examples.authentication import configuration
from examples.authentication import generate_user_credentials
from google.protobuf import field_mask_pb2
from google.shopping.merchant_accounts_v1 import AccessRight
from google.shopping.merchant_accounts_v1 import UpdateUserRequest
from google.shopping.merchant_accounts_v1 import User
from google.shopping.merchant_accounts_v1 import UserServiceClient
FieldMask = field_mask_pb2.FieldMask
_ACCOUNT = configuration.Configuration().read_merchant_info()
def update_user(user_email, user_access_right):
"""Updates a user to make it an admin of the MC account."""
credentials = generate_user_credentials.main()
client = UserServiceClient(credentials=credentials)
# Create user name string
name = "accounts/" + _ACCOUNT + "/users/" + user_email
user = User(name=name, access_rights=[user_access_right])
field_mask = FieldMask(paths=["access_rights"])
try:
request = UpdateUserRequest(user=user, update_mask=field_mask)
print("Sending Update User request")
response = client.update_user(request=request)
print("Updated User Name below")
print(response.name)
except RuntimeError as e:
print(e)
if __name__ == "__main__":
# Modify this email to update the right user
email = "USER_MAIL_ACCOUNT"
access_right = AccessRight.ADMIN
update_user(email, access_right)
ধাপ ৪খ। ব্যাকআপ ডেভেলপার যোগ করুন।
আপনার প্রধান ডেভেলপার প্রতিষ্ঠান ছেড়ে গেলেও যাতে আপনার এপিআই (API) অ্যাক্সেস ব্যাহত না হয়, সেজন্য আপনার অন্তত একজন ব্যাকআপ ডেভেলপার যুক্ত করা উচিত।
আপনি accounts.users.create মেথড ব্যবহার করে একজন নতুন ব্যবহারকারী যোগ করতে পারেন অথবা accounts.users.patch মেথড ব্যবহার করে বিদ্যমান ব্যবহারকারীকে আপডেট করতে পারেন। আমরা এই ব্যবহারকারীকে ADMIN এবং API_DEVELOPER উভয় রোলই দেওয়ার পরামর্শ দিই।
ধাপ ৫. একটি প্রাথমিক পণ্য ডেটা উৎস তৈরি করুন।
একটি পণ্য যোগ করার আগে, আপনার একটি প্রাথমিক পণ্য ডেটা সোর্স প্রয়োজন। ডেটা সোর্স তৈরির নমুনা কোডের জন্য, "পাইথন ব্যবহার করে একাধিক ভাষা সমর্থনকারী একটি প্রাথমিক পণ্য ডেটা সোর্সের নমুনা তৈরি করুন" দেখুন।
পাইথন
# -*- 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.
"""This class demonstrates how to create a Primary product datasource all `feedLabel` and `contentLanguage` combinations.
This works only for API primary feeds.
"""
from examples.authentication import configuration
from examples.authentication import generate_user_credentials
from google.shopping.merchant_datasources_v1 import CreateDataSourceRequest
from google.shopping.merchant_datasources_v1 import DataSource
from google.shopping.merchant_datasources_v1 import DataSourcesServiceClient
from google.shopping.merchant_datasources_v1 import PrimaryProductDataSource
_ACCOUNT = configuration.Configuration().read_merchant_info()
_PARENT = f"accounts/{_ACCOUNT}"
def create_primary_product_data_source_multiple_languages():
"""Creates a `DataSource` resource."""
# Gets OAuth Credentials.
credentials = generate_user_credentials.main()
# Creates a client.
client = DataSourcesServiceClient(credentials=credentials)
# Creates a PrimaryProductDataSource.
primary_datasource = PrimaryProductDataSource()
primary_datasource.countries = ["GB"]
# Creates a DataSource and populates its attributes.
data_source = DataSource()
data_source.display_name = "Example Multiple Languages Primary DataSource"
data_source.primary_product_data_source = primary_datasource
# Creates the request.
request = CreateDataSourceRequest(parent=_PARENT, data_source=data_source)
# Makes the request and catches and prints any error messages.
try:
response = client.create_data_source(request=request)
print(f"DataSource successfully created: {response}")
except RuntimeError as e:
print("DataSource creation failed")
print(e)
if __name__ == "__main__":
create_primary_product_data_source_multiple_languages()
আপনি মার্চেন্ট সেন্টার UI-তে এই ডেটা সোর্সটি দেখতে পারেন। আরও তথ্যের জন্য, “ডেটা সোর্স ট্যাবটি কীভাবে খুঁজে পাবেন ” দেখুন।
ধাপ ৬। একটি পণ্য প্রবেশ করান।
ডেটা সোর্স তৈরি করার পর, তাতে একটি পণ্য যুক্ত করার চেষ্টা করুন। ক্লায়েন্ট লাইব্রেরি ব্যবহার করে কীভাবে এটি করতে হয়, তার নমুনা কোডের জন্য "পাইথন দিয়ে একটি পণ্য ইনপুট যুক্ত করার নমুনা" দেখুন।
পাইথন
# -*- 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 insert a Product Input."""
from examples.authentication import configuration
from examples.authentication import generate_user_credentials
from google.shopping import merchant_products_v1
from google.shopping.merchant_products_v1 import Availability
from google.shopping.merchant_products_v1 import Condition
from google.shopping.type import Price
_ACCOUNT = configuration.Configuration().read_merchant_info()
_PARENT = f"accounts/{_ACCOUNT}"
# You can only insert products into datasource types of Input "API" and
# "FILE", and of Type "Primary" or "Supplemental."
_DATA_SOURCE = "[INSERT_DATA_SOURCE_HERE]"
_DATA_SOURCE_NAME = f"accounts/{_ACCOUNT}/dataSources/{_DATA_SOURCE}"
def create_product_input():
"""Creates a `ProductInput` resource."""
# Creates a shipping setting
price = Price()
price.amount_micros = 33_450_000
price.currency_code = "GBP"
shipping_option_1 = merchant_products_v1.Shipping()
shipping_option_1.price = price
shipping_option_1.country = "GB"
shipping_option_1.service = "1st class post"
price2 = Price()
price2.amount_micros = 33_450_000
price2.currency_code = "EUR"
shipping_option_2 = merchant_products_v1.Shipping()
shipping_option_2.price = price2
shipping_option_2.country = "FR"
shipping_option_2.service = "2nd class post"
# Sets product attributes. Make sure to replace these values with your own.
attributes = merchant_products_v1.ProductAttributes()
attributes.title = "A Tale of Two Cities"
attributes.description = "A classic novel about the French Revolution"
attributes.link = "https://exampleWebsite.com/tale-of-two-cities.html"
attributes.image_link = "https://exampleWebsite.com/tale-of-two-cities.jpg"
attributes.price = price
attributes.availability = Availability.IN_STOCK
attributes.condition = Condition.NEW
attributes.google_product_category = "Media > Books"
attributes.gtins = ["9780007350896"]
attributes.shipping = [shipping_option_1, shipping_option_2]
return merchant_products_v1.ProductInput(
content_language="en",
feed_label="GB",
offer_id="sku123",
product_attributes=attributes,
)
def insert_product_input():
"""Inserts the specified `ProductInput` resource."""
# Gets OAuth Credentials.
credentials = generate_user_credentials.main()
# Creates a client.
client = merchant_products_v1.ProductInputsServiceClient(
credentials=credentials
)
# Creates the request.
request = merchant_products_v1.InsertProductInputRequest(
parent=_PARENT,
# If this product is already owned by another datasource, when
# re-inserting, the new datasource will take ownership of the product.
product_input=create_product_input(),
data_source=_DATA_SOURCE_NAME,
)
# Makes the request and catches and prints any error messages.
try:
response = client.insert_product_input(request=request)
# The last part of the product name will be the product ID assigned to a
# product by Google. Product ID has the format
# `contentLanguage~feedLabel~offerId`
print(f"Input successful: {response}")
except RuntimeError as e:
print("Input failed")
print(e)
# After the product is inserted, the product ID will be returned in the
# response. We recommend that you check the Merchant Center to ensure that
# the product is approved and visible to users before using the product ID
# in any downstream processes.
if __name__ == "__main__":
insert_product_input()
ধাপ ৭। আপনার পণ্যগুলো তালিকাভুক্ত করুন।
আপনার ডেটা সোর্সের পণ্যগুলো তালিকাভুক্ত করার নমুনা কোডের জন্য, “List products sample with Python” দেখুন।
পাইথন
# -*- 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 list Products."""
from examples.authentication import configuration
from examples.authentication import generate_user_credentials
from google.shopping import merchant_products_v1
_ACCOUNT = configuration.Configuration().read_merchant_info()
_PARENT = f"accounts/{_ACCOUNT}"
def list_products():
"""Lists the `Product` resources for a given account."""
# Gets OAuth Credentials.
credentials = generate_user_credentials.main()
# Creates a client.
client = merchant_products_v1.ProductsServiceClient(
credentials=credentials
)
# Creates the request. Set the page size to the maximum value.
request = merchant_products_v1.ListProductsRequest(
parent=_PARENT, page_size=1000
)
# Makes the request and catches and prints any error messages.
try:
response = client.list_products(request=request)
for product in response:
print(product)
print("List request successful!")
except RuntimeError as e:
print("List request failed")
print(e)
if __name__ == "__main__":
list_products()