কুইকস্টার্ট: ক্লায়েন্ট লাইব্রেরি ব্যবহার করা

এই পৃষ্ঠাটি আপনাকে দেখায় কিভাবে ক্লায়েন্ট লাইব্রেরি ব্যবহার করে আপনার প্রিয় প্রোগ্রামিং ভাষায় Google Analytics অ্যাডমিন API দিয়ে শুরু করবেন।

ধাপ 1. API সক্ষম করুন

একটি নতুন ক্লাউড প্ল্যাটফর্ম প্রকল্প তৈরি করতে এই বোতামটি ক্লিক করুন এবং স্বয়ংক্রিয়ভাবে Google Analytics অ্যাডমিন API সক্ষম করুন:

Google Analytics অ্যাডমিন API সক্ষম করুন

ফলস্বরূপ ডায়ালগে ক্লিক করুন ক্লায়েন্ট কনফিগারেশন ডাউনলোড করুন এবং ফাইল credentials.json আপনার কাজের ডিরেক্টরিতে সংরক্ষণ করুন।

ধাপ 2। প্রমাণীকরণ কনফিগার করুন

এই অ্যাপ্লিকেশনটি পরিষেবা অ্যাকাউন্টের শংসাপত্রগুলি ব্যবহার করে Google Analytics অ্যাডমিন API-এর ব্যবহার প্রদর্শন করে৷

আপনার অ্যাপ্লিকেশনের জন্য পরিষেবা অ্যাকাউন্ট শংসাপত্র তৈরি এবং সেট করার নির্দেশাবলীর জন্য আরও পড়ুন

পরিষেবা অ্যাকাউন্টের শংসাপত্রগুলি প্রদান করার একটি সহজ উপায় হল GOOGLE_APPLICATION_CREDENTIALS এনভায়রনমেন্ট ভেরিয়েবল সেট করা, API ক্লায়েন্ট পরিষেবা অ্যাকাউন্ট কী JSON ফাইলটি খুঁজে পেতে এই ভেরিয়েবলের মান ব্যবহার করবে৷

এই উদাহরণে অ্যাপ্লিকেশন শংসাপত্র সেট করতে, নিম্নলিখিত কমান্ডটি চালান এবং ধাপ 1 এ ডাউনলোড করা পরিষেবা অ্যাকাউন্ট JSON ফাইলের পথটি ব্যবহার করুন:

export GOOGLE_APPLICATION_CREDENTIALS="[PATH]"

উদাহরণ স্বরূপ:

export GOOGLE_APPLICATION_CREDENTIALS="/home/user/Downloads/service_account.json"

ধাপ 3. ক্লায়েন্ট লাইব্রেরি ইনস্টল করুন

একটি API কল করুন

এখন আপনি Google Analytics অ্যাকাউন্টগুলি তালিকাভুক্ত করতে Google Analytics অ্যাডমিন API ব্যবহার করতে পারেন৷ API-তে আপনার প্রথম কল করতে নিম্নলিখিত কোডটি চালান:

জাভা

import com.google.analytics.admin.v1beta.Account;
import com.google.analytics.admin.v1beta.AnalyticsAdminServiceClient;
import com.google.analytics.admin.v1beta.AnalyticsAdminServiceClient.ListAccountsPage;
import com.google.analytics.admin.v1beta.AnalyticsAdminServiceClient.ListAccountsPagedResponse;
import com.google.analytics.admin.v1beta.ListAccountsRequest;

/**
 * This application demonstrates the usage of the Analytics Admin API using service account
 * credentials. For more information on service accounts, see
 * https://cloud.google.com/iam/docs/understanding-service-accounts.
 *
 * <p>The following document provides instructions on setting service account credentials for your
 * application: https://cloud.google.com/docs/authentication/production
 *
 * <p>In a nutshell, you need to:
 *
 * <ol>
 *   <li>Create a service account and download the key JSON file as described at
 *       https://cloud.google.com/docs/authentication/production#creating_a_service_account.
 *   <li>Provide service account credentials using one of the following options:
 *       <ul>
 *         <li>Set the {@code GOOGLE_APPLICATION_CREDENTIALS} environment variable. The API client
 *             will use the value of this variable to find the service account key JSON file. See
 *             https://cloud.google.com/docs/authentication/production#setting_the_environment_variable
 *             for more information.
 *             <p>OR
 *         <li>Manually pass the path to the service account key JSON file to the API client by
 *             specifying the {@code keyFilename} parameter in the constructor. See
 *             https://cloud.google.com/docs/authentication/production#passing_the_path_to_the_service_account_key_in_code
 *             for more information.
 *       </ul>
 * </ol>
 *
 * <p>To run this sample using Maven:
 *
 * <pre>{@code
 * cd google-analytics-data
 * mvn compile exec:java -Dexec.mainClass="com.google.analytics.admin.samples.QuickstartSample"
 * }</pre>
 */
public class QuickstartSample {

  public static void main(String... args) throws Exception {
    listAccounts();
  }

  // This is an example snippet that calls the Google Analytics Admin API and lists all Google
  // Analytics accounts available to the authenticated user.
  static void listAccounts() throws Exception {
    // Instantiates a client using default credentials.
    // See https://cloud.google.com/docs/authentication/production for more information
    // about managing credentials.
    try (AnalyticsAdminServiceClient analyticsAdmin = AnalyticsAdminServiceClient.create()) {
      // Calls listAccounts() method of the Google Analytics Admin API and prints
      // the response for each account.
      ListAccountsPagedResponse response =
          analyticsAdmin.listAccounts(ListAccountsRequest.newBuilder().build());
      for (ListAccountsPage page : response.iteratePages()) {
        for (Account account : page.iterateAll()) {
          System.out.printf("Account name: %s%n", account.getName());
          System.out.printf("Display name: %s%n", account.getDisplayName());
          System.out.printf("Country code: %s%n", account.getRegionCode());
          System.out.printf("Create time: %s%n", account.getCreateTime().getSeconds());
          System.out.printf("Update time: %s%n", account.getUpdateTime().getSeconds());
          System.out.println();
        }
      }
    }
  }
}

পাইথন

def list_accounts(transport: str = None):
    """
    Lists the available Google Analytics accounts.

    Args:
        transport(str): The transport to use. For example, "grpc"
            or "rest". If set to None, a transport is chosen automatically.
    """
    from google.analytics.admin import AnalyticsAdminServiceClient

    # Using a default constructor instructs the client to use the credentials
    # specified in GOOGLE_APPLICATION_CREDENTIALS environment variable.
    client = AnalyticsAdminServiceClient(transport=transport)

    results = client.list_accounts()

    # Displays the configuration information for all Google Analytics accounts
    # available to the authenticated user.
    print("Result:")
    for account in results:
        print(account)


Node.js

// Imports the Google Analytics Admin API client library
const analyticsAdmin = require('@google-analytics/admin');

async function main() {
  // Instantiates a client using default credentials.
  // TODO(developer): uncomment and use the following line in order to
  //  manually set the path to the service account JSON file instead of
  //  using the value from the GOOGLE_APPLICATION_CREDENTIALS environment
  //  variable.
  // const analyticsAdminClient = new analyticsAdmin.AnalyticsAdminServiceClient(
  //     {keyFilename: "your_key_json_file_path"});
  const analyticsAdminClient = new analyticsAdmin.AnalyticsAdminServiceClient();

  // Calls listAccounts() method of the Google Analytics Admin API and prints
  // the response for each account.
  const [accounts] = await analyticsAdminClient.listAccounts();

  console.log('Accounts:');
  accounts.forEach(account => {
    console.log(account);
  });
}

main(...process.argv.slice(2)).catch(err => {
  console.error(err.message);
  process.exitCode = 1;
});
process.on('unhandledRejection', err => {
  console.error(err.message);
  process.exitCode = 1;
});

রুবি




যাওয়া




.নেট


using Google.Analytics.Admin.V1Alpha;
using System;

namespace AnalyticsSamples
{
    class QuickStart
    {
        static void Main(string[] args)
        {
            var client = AnalyticsAdminServiceClient.Create();
            var response = client.ListAccounts( new ListAccountsRequest() );
            foreach( Account account in response )
            {
                Console.WriteLine("Account name: {0}", account.Name);
                Console.WriteLine("Display name: {0}", account.DisplayName);
                Console.WriteLine("Country code: {0}", account.CountryCode);
                Console.WriteLine("Update time: {0}", account.UpdateTime);
                Console.WriteLine("Create time: {0}", account.CreateTime);
                Console.WriteLine();
            }
        }
    }
}

অভিনন্দন! আপনি Google Analytics অ্যাডমিন API-এ আপনার প্রথম অনুরোধ পাঠিয়েছেন।