خدمة الأشخاص المتقدمة

تتيح لك خدمة "جهات الاتصال" المتقدّمة استخدام People API في Apps Script. تسمح واجهة برمجة التطبيقات هذه للنصوص البرمجية بإنشاء بيانات جهات الاتصال للمستخدم الذي سجّل الدخول وقراءتها وتعديلها وقراءة بيانات الملف الشخصي لمستخدمي Google.

مَراجع

للحصول على معلومات تفصيلية عن هذه الخدمة، يُرجى الاطّلاع على مستندات المرجع لواجهة برمجة التطبيقات People API. مثل جميع الخدمات المتقدّمة في Apps Script، تستخدم خدمة "المستخدمون" المتقدّمة العناصر والأساليب والمَعلمات نفسها المستخدَمة في واجهة برمجة التطبيقات المتاحة للجميع. لمزيد من المعلومات، اطّلِع على كيفية تحديد توقيعات الطرق.

للإبلاغ عن المشاكل والعثور على دعم آخر، يُرجى الاطّلاع على دليل دعم People v1.

نموذج التعليمات البرمجية

يستخدم نموذج الرمز البرمجي أدناه الإصدار 1 من واجهة برمجة التطبيقات.

الحصول على اتصالات المستخدم

للاطّلاع على قائمة بالأشخاص في جهات اتصال المستخدم، استخدِم الرمز البرمجي التالي:

advanced/people.gs
/**
 * Gets a list of people in the user's contacts.
 * @see https://developers.google.com/people/api/rest/v1/people.connections/list
 */
function getConnections() {
  try {
    // Get the list of connections/contacts of user's profile
    const people = People.People.Connections.list('people/me', {
      personFields: 'names,emailAddresses'
    });
    // Print the connections/contacts
    console.log('Connections: %s', JSON.stringify(people, null, 2));
  } catch (err) {
    // TODO (developers) - Handle exception here
    console.log('Failed to get the connection with an error %s', err.message);
  }
}

الحصول على معلومات المستخدم

للحصول على الملف الشخصي للمستخدم، عليك طلب نطاق https://www.googleapis.com/auth/userinfo.profile باتّباع تعليمات إضافة نطاقات صريحة إلى ملف بيان appsscript.json. بعد إضافة النطاق، يمكنك استخدام الرمز البرمجي التالي:

advanced/people.gs
/**
 * Gets the own user's profile.
 * @see https://developers.google.com/people/api/rest/v1/people/getBatchGet
 */
function getSelf() {
  try {
    // Get own user's profile using People.getBatchGet() method
    const people = People.People.getBatchGet({
      resourceNames: ['people/me'],
      personFields: 'names,emailAddresses'
      // Use other query parameter here if needed
    });
    console.log('Myself: %s', JSON.stringify(people, null, 2));
  } catch (err) {
    // TODO (developer) -Handle exception
    console.log('Failed to get own profile with an error %s', err.message);
  }
}

الحصول على حساب Google للمستخدم

للاطّلاع على معلومات المستخدم لأي حساب على Google، استخدِم الرمز التالي:

advanced/people.gs
/**
 * Gets the person information for any Google Account.
 * @param {string} accountId The account ID.
 * @see https://developers.google.com/people/api/rest/v1/people/get
 */
function getAccount(accountId) {
  try {
    // Get the Account details using account ID.
    const people = People.People.get('people/' + accountId, {
      personFields: 'names,emailAddresses'
    });
    // Print the profile details of Account.
    console.log('Public Profile: %s', JSON.stringify(people, null, 2));
  } catch (err) {
    // TODO (developer) - Handle exception
    console.log('Failed to get account with an error %s', err.message);
  }
}