אימות זהות המפרסם

כדי לספק למשתמשים סביבה עסקית בטוחה ומהימנה לפרסום מודעות, וכדי לפעול בהתאם לתקנות החדשות, Google דורשת עכשיו מהמפרסמים להשלים תוכנית אימות אחת או יותר.

אם אתם נדרשים להשלים תוכנית אימות, יכול להיות שייקבע תאריך יעד לתהליך האימות. אם המועד האחרון יחלוף בלי שהאימות יושלם, יכול להיות שהחשבון יושהה.

אתם יכולים גם לבצע אימות באופן יזום, גם אם לא נדרשת מכם לעשות זאת. ב-IdentityVerificationService יש שיטות לביצוע הפעולות הבאות:

  • אחזור הסטטוס של תהליך האימות של חשבון לקוח, כולל מועדים אחרונים
  • התחלת תהליך אימות

אחזור סטטוס האימות

כדי לאחזר את הסטטוס של תהליך אימות הזהות של המפרסם בחשבון לקוח, צריך להפעיל את השיטה GetIdentityVerification:

Java

This example is not yet available in Java; you can take a look at the other languages.
    

C#‎

private static IdentityVerification GetIdentityVerification(
        GoogleAdsClient client, long customerId)
{
    IdentityVerificationServiceClient identityVerificationService =
        client.GetService(Services.V18.IdentityVerificationService);

    try {
        GetIdentityVerificationResponse response =
            identityVerificationService.GetIdentityVerification(
                new GetIdentityVerificationRequest()
                {
                    CustomerId = customerId.ToString()
                }
            );

            if (response.IdentityVerification.Count == 0)
            {
                return null;
            }

            IdentityVerification identityVerification = response.IdentityVerification[0];
            string deadline =
                identityVerification.IdentityVerificationRequirement.VerificationCompletionDeadlineTime;
             IdentityVerificationProgress identityVerificationProgress =
                identityVerification.VerificationProgress;
            Console.WriteLine($"Account {customerId} has a verification completion " +
                $"deadline of {deadline} and status " +
                $"{identityVerificationProgress.ProgramStatus} for advertiser identity " +
                "verification.");

            return identityVerification;
    } catch (GoogleAdsException e)
    {
        Console.WriteLine("Failure:");
        Console.WriteLine($"Message: {e.Message}");
        Console.WriteLine($"Failure: {e.Failure}");
        Console.WriteLine($"Request ID: {e.RequestId}");
        throw;
    }


}
      

PHP

This example is not yet available in PHP; you can take a look at the other languages.
    

Python

This example is not yet available in Python; you can take a look at the other languages.
    

Ruby

def get_identity_verification(client, customer_id)
  response = client.service.identity_verification.get_identity_verification(
    customer_id: customer_id
  )

  return nil if response.nil? || response.identity_verification.empty?

  identity_verification = response.identity_verification.first
  deadline = identity_verification.
    identity_verification_requirement.
    verification_completion_deadline_time
  progress = identity_verification.verification_progress
  puts "Account #{customer_id} has a verification completion deadline " \
    "of #{deadline} and status #{progress.program_status} for advertiser " \
    "identity verification."

  identity_verification
end
      

Perl

sub get_identity_verification {
  my ($api_client, $customer_id) = @_;

  my $response = $api_client->IdentityVerificationService()->get({
    customerId => $customer_id
  });

  if (!defined $response->{identityVerification}) {
    printf "Account %s does not require advertiser identity verification.",
      $customer_id;
    return;
  }

  my $identity_verification = $response->{identityVerification}[0];
  my $deadline = $identity_verification->{identityVerificationRequirement}
    {verificationCompletionDeadlineTime};
  my $identity_verification_progress =
    $identity_verification->{verificationProgress};

  printf "Account %s has a verification completion deadline of %s and status " .
    "%s for advertiser identity verification.", $customer_id, $deadline,
    $identity_verification_progress->{programStatus};
  return $identity_verification;
}
      

אם חשבון הלקוח רשום בתוכנית החובה לאימות הזהות של המפרסם, השירות מחזיר תגובה לא ריקה שמכילה רשימה של אובייקטים מסוג IdentityVerification. תגובה ריקה מציינת שלא נדרש לבצע אימות זהות של המפרסם בחשבון הלקוח.

Google Ads API תומך רק בתוכנית ADVERTISER_IDENTITY_VERIFICATION, כך שזה יהיה הפריט היחיד ברשימה.

אובייקט IdentityVerification מכיל את המאפיינים הבאים:

  • IdentityVerificationRequirement שמתאר את תאריכי היעד להתחלת תהליך האימות ולהשלמתו

  • IdentityVerificationProgress שמתאר את הסטטוס הנוכחי של תהליך האימות: הוא יכול לכלול גם את כתובת ה-URL של הפעולה שהמשתמש צריך לבצע כדי להשלים את תהליך האימות.

התחל את תהליך האימות

אם חשבון לקוח רשום בתוכנית האימות החובה של זהות המפרסם, ו-GetIdentityVerification החזיר תשובה לא ריקה עם מועד אחרון להשלמתו של תהליך האימות, אפשר להתחיל סשן אימות באמצעות קריאה ל-StartIdentityVerification:

Java

This example is not yet available in Java; you can take a look at the other languages.
    

C#‎

private static void StartIdentityVerification(GoogleAdsClient client, long customerId)
{
    IdentityVerificationServiceClient identityVerificationService =
        client.GetService(Services.V18.IdentityVerificationService);

    StartIdentityVerificationRequest request = new StartIdentityVerificationRequest()
    {
        CustomerId = customerId.ToString(),
        VerificationProgram = IdentityVerificationProgram.AdvertiserIdentityVerification
    };

    try {
        identityVerificationService.StartIdentityVerification(request);
    } catch (GoogleAdsException e)
    {
        Console.WriteLine("Failure:");
        Console.WriteLine($"Message: {e.Message}");
        Console.WriteLine($"Failure: {e.Failure}");
        Console.WriteLine($"Request ID: {e.RequestId}");
        throw;
    }
}
      

PHP

This example is not yet available in PHP; you can take a look at the other languages.
    

Python

This example is not yet available in Python; you can take a look at the other languages.
    

Ruby

def start_identity_verification(client, customer_id)
  client.service.identity_verification.start_identity_verification(
    customer_id: customer_id,
    verification_program: :ADVERTISER_IDENTITY_VERIFICATION,
  )
end
      

Perl

sub start_identity_verification {
  my ($api_client, $customer_id) = @_;

  my $request =
    Google::Ads::GoogleAds::V18::Services::IdentityVerificationService::StartIdentityVerificationRequest
    ->new({
      customerId          => $customer_id,
      verificationProgram => ADVERTISER_IDENTITY_VERIFICATION
    });

  $api_client->AdvertiserIdentityVerificationService()
    ->start_identity_verification($request);
}
      

הקריאה תצליח רק אם אין סשן אימות אחר בתהליך. אחרי שמתחילים סשן אימות, קריאות חוזרות ל-GetIdentityVerification יחזירו את כתובת ה-URL של הפעולה שבה המשתמש צריך להשלים את תהליך האימות ואת זמן התפוגה של כתובת ה-URL של הפעולה.

אחרי שפג תוקף הזמן, אפשר לבצע שוב קריאה ל-StartIdentityVerification כדי להתחיל סשן אימות חדש.