คู่มือนี้อธิบายวิธีจัดการค่ากำหนดการแจ้งเตือนทางอีเมลของบัญชี Merchant Center สำหรับอีเมลที่ไม่บังคับโดยใช้ Merchant API
ค่ากำหนดอีเมลของคุณจะเฉพาะเจาะจงสำหรับบัญชี Merchant Center แต่ละบัญชีที่คุณมีสิทธิ์เข้าถึง หากจัดการหลายบัญชี คุณสามารถตั้งค่ากำหนดที่แตกต่างกัน สำหรับแต่ละบัญชีได้ Merchant API ช่วยให้คุณเรียกข้อมูลการตั้งค่าปัจจุบันและ อัปเดตการตั้งค่าเหล่านั้นได้ ดูข้อมูลเพิ่มเติมเกี่ยวกับการจัดการค่ากำหนดของอีเมลผ่าน อินเทอร์เฟซ Merchant Center ได้ที่เปลี่ยนค่ากำหนดของอีเมล Merchant Center
Merchant API รองรับเฉพาะการจัดการค่ากำหนดสำหรับอีเมล "ข่าวสารและเคล็ดลับ"
สิ่งที่ควรพิจารณาเป็นพิเศษ
- ผู้ใช้ที่ได้รับการตรวจสอบสิทธิ์เท่านั้น: คุณจะรับหรืออัปเดตค่ากําหนดอีเมลได้
สําหรับบัญชีผู้ใช้ที่ได้รับการตรวจสอบสิทธิ์สําหรับการเรียก API เท่านั้น คุณต้อง
ระบุอีเมลของผู้ใช้รายนี้ในเส้นทางคำขอ (เช่น
user@email.com) หรือใช้นามแฝงme
- บัญชีขั้นสูง: หากคุณเป็นผู้ใช้บัญชีขั้นสูง ระบบจะตั้งค่ากำหนดอีเมลของคุณที่ระดับบัญชีขั้นสูงและจะมีผลกับบัญชีขั้นสูงเองและบัญชีย่อยทั้งหมด เมื่อใช้ API ผู้ใช้บัญชีขั้นสูงควรระบุรหัสบัญชีขั้นสูงเพื่อจัดการค่ากำหนด
- บัญชีบริการ: บัญชีบริการจะไม่ได้รับการแจ้งเตือนแม้ว่าจะมีการตั้งค่ากำหนดอีเมลไว้ก็ตาม
- UNCONFIRMEDstate: เซิร์ฟเวอร์เท่านั้นที่ตั้งค่า- UNCONFIRMEDสถานะการเลือกรับสำหรับอีเมล ค่ากำหนดได้ คุณตั้งค่ากำหนดเป็น- UNCONFIRMEDโดยใช้ API ไม่ได้ การพยายามตั้งค่ากำหนดนี้จะทำให้เกิด ข้อผิดพลาด สถานะ- UNCONFIRMEDระบุว่าระบบได้ส่งอีเมลยืนยันไปยังผู้ใช้ที่เลือกใช้แล้ว แต่ผู้ใช้ยังไม่ได้คลิกลิงก์ยืนยัน
ตรวจสอบค่ากำหนดของอีเมล Merchant Center
หากต้องการดูการตั้งค่าการแจ้งเตือนทางอีเมลปัจจุบันสำหรับบัญชี Merchant Center
 ที่เฉพาะเจาะจง ให้ใช้วิธี
GetEmailPreferences
 คุณจะต้องระบุรหัสบัญชี Merchant Center และใช้อีเมล
ของผู้ใช้ หรือใช้meแทนชื่อเพื่อระบุผู้ใช้ที่ได้รับการตรวจสอบสิทธิ์
คำขอนี้จะดึงข้อมูลEmailPreferences
ซึ่งแสดงสถานะการเลือกใช้สำหรับหมวดหมู่การแจ้งเตือนที่มี
เช่น news_and_tips
GET https://merchantapi.googleapis.com/accounts/v1/accounts/{ACCOUNT_ID}/users/{EMAIL_ADDRESS}/emailPreferences
คำขอที่สำเร็จจะแสดงทรัพยากร EmailPreferences ซึ่งแสดง
การตั้งค่าปัจจุบัน
ตัวอย่างการตอบกลับ:
{
  "name": "accounts/{ACCOUNT_ID}/users/{EMAIL_ADDRESS}/emailPreferences",
  "news_and_tips": "OPTED_IN"
}
ตัวอย่างโค้ดนี้แสดงวิธีดึงค่ากำหนดของอีเมลสำหรับบัญชี Merchant Center
Java
import com.google.api.gax.core.FixedCredentialsProvider;
import com.google.auth.oauth2.GoogleCredentials;
import com.google.shopping.merchant.accounts.v1.EmailPreferences;
import com.google.shopping.merchant.accounts.v1.EmailPreferencesName;
import com.google.shopping.merchant.accounts.v1.EmailPreferencesServiceClient;
import com.google.shopping.merchant.accounts.v1.EmailPreferencesServiceSettings;
import com.google.shopping.merchant.accounts.v1.GetEmailPreferencesRequest;
import shopping.merchant.samples.utils.Authenticator;
import shopping.merchant.samples.utils.Config;
/** This class demonstrates how to get the email preferences of a Merchant Center account. */
public class GetEmailPreferencesSample {
  public static void getEmailPreferences(Config config, String email) throws Exception {
    // Obtains OAuth token based on the user's configuration.
    GoogleCredentials credential = new Authenticator().authenticate();
    // Creates service settings using the credentials retrieved above.
    EmailPreferencesServiceSettings emailPreferencesServiceSettings =
        EmailPreferencesServiceSettings.newBuilder()
            .setCredentialsProvider(FixedCredentialsProvider.create(credential))
            .build();
    // Creates EmailPreferences name to identify the EmailPreferences.
    String name =
        EmailPreferencesName.newBuilder()
            .setAccount(config.getAccountId().toString())
            .setEmail(email)
            .build()
            .toString();
    // Calls the API and catches and prints any network failures/errors.
    try (EmailPreferencesServiceClient emailPreferencesServiceClient =
        EmailPreferencesServiceClient.create(emailPreferencesServiceSettings)) {
      // The name has the format: accounts/{account}/users/{user}/emailPreferences
      GetEmailPreferencesRequest request =
          GetEmailPreferencesRequest.newBuilder().setName(name).build();
      System.out.println("Sending get EmailPreferences request:");
      EmailPreferences response = emailPreferencesServiceClient.getEmailPreferences(request);
      System.out.println("Retrieved EmailPreferences below");
      System.out.println(response);
    } catch (Exception e) {
      System.out.println(e);
    }
  }
  public static void main(String[] args) throws Exception {
    Config config = Config.load();
    // The email address of this user. If you want to get the user information
    // Of the user making the Content API request, you can also use "me" instead
    // Of an email address.
    String email = "testUser@gmail.com";
    // String email = "me";
    getEmailPreferences(config, email);
  }
}
PHP
use Google\ApiCore\ApiException;
use Google\Shopping\Merchant\Accounts\V1\Client\EmailPreferencesServiceClient;
use Google\Shopping\Merchant\Accounts\V1\GetEmailPreferencesRequest;
/**
 * This class demonstrates how to get the email preferences of a Merchant Center account.
 */
class GetEmailPreferences
{
    /**
     * Gets the email preferences of a Merchant Center account.
     *
     * @param array $config
     *      The configuration data used for authentication and getting the acccount ID.
     * @param string $email The email address of this user. If you want to get the user information
     *      of the user making the Merchant API request, you can also use "me" instead
     *      of an email address.
     *
     * @return void
     */
    public static function getEmailPreferencesSample($config, $email): 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.
        $emailPreferencesServiceClient = new EmailPreferencesServiceClient($options);
        // Creates EmailPreferences name to identify the EmailPreferences.
        // The name has the format: accounts/{account}/users/{user}/emailPreferences
        $name = "accounts/" . $config['accountId'] . "/users/" . $email . "/emailPreferences";
        // Calls the API and catches and prints any network failures/errors.
        try {
            $request = (new GetEmailPreferencesRequest())
                ->setName($name);
            print "Sending get EmailPreferences request:\n";
            $response = $emailPreferencesServiceClient->getEmailPreferences($request);
            print "Retrieved EmailPreferences below\n";
            print_r($response);
        } catch (ApiException $e) {
            print $e->getMessage();
        }
    }
    /**
     * Helper to execute the sample.
     *
     * @return void
     */
    public function callSample(): void
    {
        $config = Config::generateConfig();
        // The email address of this user. If you want to get the user information
        // Of the user making the Merchant API request, you can also use "me" instead
        // Of an email address.
        // $email = "testUser@gmail.com";
        $email = "me";
        self::getEmailPreferencesSample($config, $email);
    }
}
// Run the script
$sample = new GetEmailPreferences();
$sample->callSample();
Python
from examples.authentication import configuration
from examples.authentication import generate_user_credentials
from google.shopping.merchant_accounts_v1 import EmailPreferencesServiceClient
from google.shopping.merchant_accounts_v1 import GetEmailPreferencesRequest
_ACCOUNT = configuration.Configuration().read_merchant_info()
def get_email_preferences(email_address):
  """Gets the email preferences of a Merchant Center account."""
  # Gets OAuth Credentials.
  credentials = generate_user_credentials.main()
  # Creates a client.
  client = EmailPreferencesServiceClient(credentials=credentials)
  # Creates EmailPreferences name to identify the EmailPreferences.
  name = (
      "accounts/" + _ACCOUNT + "/users/" + email_address + "/emailPreferences"
  )
  # Creates the request.
  request = GetEmailPreferencesRequest(name=name)
  # Makes the request and catches and prints any error messages.
  try:
    response = client.get_email_preferences(request=request)
    print("Retrieved EmailPreferences below")
    print(response)
  except RuntimeError as e:
    print(e)
if __name__ == "__main__":
  # The email address of this user. If you want to get the user information
  # Of the user making the Content API request, you can also use "me" instead
  # Of an email address.
  # email = "testUser@gmail.com"
  email = "me"
  get_email_preferences(email)
cURL
curl --location \
'https://merchantapi.googleapis.com/accounts/v1/accounts/{ACCOUNT_ID}/users/{EMAIL_ADDRESS}/emailPreferences' \
--header 'Authorization: Bearer <API_TOKEN>'
เปลี่ยนค่ากำหนดของอีเมล Merchant Center
หากต้องการเปลี่ยนค่ากำหนดการแจ้งเตือนทางอีเมล เช่น การเลือกรับหรือเลือกไม่รับอีเมล "ข่าวสาร
และเคล็ดลับ" ให้ใช้วิธี
UpdateEmailPreferences
ในคำขอ คุณจะต้องระบุรหัสบัญชี Merchant Center และใช้อีเมล (หรือmeนามแฝง) สำหรับอีเมลของผู้ใช้ เนื้อหาของคำขอควรมีออบเจ็กต์
EmailPreferences
พร้อม opt_in_state ที่เลือกสำหรับช่อง news_and_tips นอกจากนี้ คุณต้องระบุ news_and_tips ในพารามิเตอร์การค้นหา update_mask เพื่อระบุว่าคุณกำลังเปลี่ยนค่ากำหนดใด
การดำเนินการนี้จะอัปเดตค่ากําหนดอีเมลสําหรับผู้ใช้ที่ได้รับการตรวจสอบสิทธิ์สําหรับบัญชี Merchant Center ที่ระบุ เช่น การตั้งค่า news_and_tips เป็น
OPTED_OUT จะทำให้คุณไม่ได้รับอีเมล "ข่าวสารและเคล็ดลับ" สำหรับบัญชีนั้น
PATCH https://merchantapi.googleapis.com/accounts/v1/accounts/{ACCOUNT_ID}/users/{EMAIL_ADDRESS}/emailPreferences?update_mask=news_and_tips
ตัวอย่างเพย์โหลดคำขอ (เพื่อเลือกไม่รับ "ข่าวสารและเคล็ดลับ"):
{
  "name": "accounts/{ACCOUNT_ID}/users/{EMAIL_ADDRESS}/emailPreferences",
  "news_and_tips": "OPTED_OUT"
}
คำขอที่สำเร็จจะแสดงทรัพยากร EmailPreferences ที่อัปเดตแล้ว
ตัวอย่างการตอบกลับ:
{
  "name": "accounts/{ACCOUNT_ID}/users/{EMAIL_ADDRESS}/emailPreferences",
  "news_and_tips": "OPTED_OUT"
}
ตัวอย่างโค้ดนี้แสดงวิธีอัปเดตค่ากำหนดของอีเมลสำหรับบัญชี Merchant Center เช่น การเลือกรับอีเมล "ข่าวสารและเคล็ดลับ"
Java
import com.google.api.gax.core.FixedCredentialsProvider;
import com.google.auth.oauth2.GoogleCredentials;
import com.google.protobuf.FieldMask;
import com.google.shopping.merchant.accounts.v1.EmailPreferences;
import com.google.shopping.merchant.accounts.v1.EmailPreferences.OptInState;
import com.google.shopping.merchant.accounts.v1.EmailPreferencesName;
import com.google.shopping.merchant.accounts.v1.EmailPreferencesServiceClient;
import com.google.shopping.merchant.accounts.v1.EmailPreferencesServiceSettings;
import com.google.shopping.merchant.accounts.v1.UpdateEmailPreferencesRequest;
import shopping.merchant.samples.utils.Authenticator;
import shopping.merchant.samples.utils.Config;
/**
 * This class demonstrates how to update a EmailPreferences to OPT_IN to News and Tips. This service
 * only permits retrieving and updating email preferences for the authenticated user.
 */
public class UpdateEmailPreferencesSample {
  public static void updateEmailPreferences(Config config, String email) throws Exception {
    GoogleCredentials credential = new Authenticator().authenticate();
    EmailPreferencesServiceSettings emailPreferencesServiceSettings =
        EmailPreferencesServiceSettings.newBuilder()
            .setCredentialsProvider(FixedCredentialsProvider.create(credential))
            .build();
    // Creates EmailPreferences name to identify EmailPreferences.
    String name =
        EmailPreferencesName.newBuilder()
            .setAccount(config.getAccountId().toString())
            .setEmail(email)
            .build()
            .toString();
    // Create a EmailPreferences with the updated fields.
    EmailPreferences emailPreferences =
        EmailPreferences.newBuilder().setName(name).setNewsAndTips(OptInState.OPTED_IN).build();
    FieldMask fieldMask = FieldMask.newBuilder().addPaths("news_and_tips").build();
    try (EmailPreferencesServiceClient emailPreferencesServiceClient =
        EmailPreferencesServiceClient.create(emailPreferencesServiceSettings)) {
      UpdateEmailPreferencesRequest request =
          UpdateEmailPreferencesRequest.newBuilder()
              .setEmailPreferences(emailPreferences)
              .setUpdateMask(fieldMask)
              .build();
      System.out.println("Sending Update EmailPreferences request");
      EmailPreferences response = emailPreferencesServiceClient.updateEmailPreferences(request);
      System.out.println("Updated EmailPreferences Name below");
      System.out.println(response.getName());
    } catch (Exception e) {
      System.out.println(e);
    }
  }
  public static void main(String[] args) throws Exception {
    Config config = Config.load();
    // The email address of this user. If you want to get the user information
    // Of the user making the Content API request, you can also use "me" instead
    // Of an email address.
    // String email = "testUser@gmail.com";
    String email = "me";
    updateEmailPreferences(config, email);
  }
}
PHP
use Google\ApiCore\ApiException;
use Google\Protobuf\FieldMask;
use Google\Shopping\Merchant\Accounts\V1\Client\EmailPreferencesServiceClient;
use Google\Shopping\Merchant\Accounts\V1\EmailPreferences;
use Google\Shopping\Merchant\Accounts\V1\EmailPreferences\OptInState;
use Google\Shopping\Merchant\Accounts\V1\UpdateEmailPreferencesRequest;
/**
 * This class demonstrates how to update a EmailPreferences to OPT_IN to News and Tips. This service
 * only permits retrieving and updating email preferences for the authenticated user.
 */
class UpdateEmailPreferences
{
    /**
     * Updates email preferences to OPT_IN to News and Tips.
     *
     * @param array $config
     *      The configuration data used for authentication and getting the acccount ID.
     * @param string $email The email address of this user. If you want to get the user information
     *      of the user making the Merchant API request, you can also use "me" instead
     *      of an email address.
     *
     * @return void
     */
    public static function updateEmailPreferencesSample($config, $email): 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.
        $emailPreferencesServiceClient = new EmailPreferencesServiceClient($options);
        // Creates EmailPreferences name to identify the EmailPreferences.
        // The name has the format: accounts/{account}/users/{user}/emailPreferences
        $name = "accounts/" . $config['accountId'] . "/users/" . $email . "/emailPreferences";
        // Create a EmailPreferences with the updated fields.
        $emailPreferences = (new EmailPreferences())
            ->setName($name)
            ->setNewsAndTips(OptInState::OPTED_OUT);
        $fieldMask = (new FieldMask())
            ->setPaths(['news_and_tips']);
        try {
            $request = (new UpdateEmailPreferencesRequest())
                ->setEmailPreferences($emailPreferences)
                ->setUpdateMask($fieldMask);
            print "Sending Update EmailPreferences request\n";
            $response = $emailPreferencesServiceClient->updateEmailPreferences($request);
            print "Updated EmailPreferences Name below\n";
            print $response->getName() . "\n";
        } catch (ApiException $e) {
            print $e->getMessage();
        }
    }
    /**
     * Helper to execute the sample.
     *
     * @return void
     */
    public function callSample(): void
    {
        $config = Config::generateConfig();
        // The email address of this user. If you want to get the user information
        // Of the user making the Merchant API request, you can also use "me" instead
        // Of an email address.
        // $email = "testUser@gmail.com";
        $email = "me";
        self::updateEmailPreferencesSample($config, $email);
    }
}
// Run the script
$sample = new UpdateEmailPreferences();
$sample->callSample();
Python
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 EmailPreferences
from google.shopping.merchant_accounts_v1 import EmailPreferencesServiceClient
from google.shopping.merchant_accounts_v1 import UpdateEmailPreferencesRequest
FieldMask = field_mask_pb2.FieldMask
_ACCOUNT = configuration.Configuration().read_merchant_info()
def update_email_preferences(email_address):
  """Updates a EmailPreferences to OPT_IN to News and Tips."""
  # Gets OAuth Credentials.
  credentials = generate_user_credentials.main()
  # Creates a client.
  client = EmailPreferencesServiceClient(credentials=credentials)
  # Creates EmailPreferences name to identify EmailPreferences.
  name = (
      "accounts/" + _ACCOUNT + "/users/" + email_address + "/emailPreferences"
  )
  # Create a EmailPreferences with the updated fields.
  email_preferences = EmailPreferences(
      name=name, news_and_tips=EmailPreferences.OptInState.OPTED_IN
  )
  # Create field mask
  field_mask = FieldMask(paths=["news_and_tips"])
  # Creates the request.
  request = UpdateEmailPreferencesRequest(
      email_preferences=email_preferences, update_mask=field_mask
  )
  # Makes the request and catches and prints any error messages.
  try:
    response = client.update_email_preferences(request=request)
    print("Updated EmailPreferences Name below")
    print(response.name)
  except RuntimeError as e:
    print(e)
if __name__ == "__main__":
  # The email address of this user. If you want to get the user information
  # of the user making the Content API request, you can also use "me" instead
  # of an email address.
  # email = "testUser@gmail.com"
  email = "me"
  update_email_preferences(email)
cURL
curl --location --request PATCH \
'https://merchantapi.googleapis.com/accounts/v1/accounts/{ACCOUNT_ID}/users/{EMAIL_ADDRESS}/emailPreferences?update_mask=news_and_tips' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <API_TOKEN>' \
--data '{
  "name": "accounts/{ACCOUNT_ID}/users/{EMAIL_ADDRESS}/emailPreferences",
  "news_and_tips": "OPTED_IN"
}'