如何使用 appscript 添加联系人照片到 google-联系人

How to add a contact-photo to google-contact with appscript

使用 appscript 创建或更新 google 联系人已被详细记录。但是我没有找到关于如何在 appscript 中将照片添加到联系人的信息。

情况: google sheet 行包含:名称、地址、ImgSrcUrl 每个都在一个单独的列中。

如何创建联系人并为其添加照片?源代码片段如下:

/******************************************************* */
function addContact() {
/******************************************************* */
  var sheet = SpreadsheetApp.getActiveSheet();
  var cell = sheet.getActiveCell();
  var active_row = cell.getRow();
  var range = sheet.getDataRange();
  const CNAME = 3;
  const CADDR = 4;
  const CEMAIL = 5;
  const CIMGURL = 6;
  var name = range.getCell(active_row, CNAME).getValue();
  var addr = range.getCell(active_row, CADDR).getValue();
  var email = range.getCell(active_row, CEMAIL).getValue();
  var imgurl = range.getCell(active_row, CIMGURL).getValue();

  contact = ContactsApp.createContact(first_name, last_name, email);  // create contact

非常感谢

我相信你的目标如下。

  • 您想将照片添加到现有联系人。
    • 我认为 a contact-photo 你认为可能是 coverPhotos
  • 您想使用 Google Apps 脚本实现此目的。

虽然我检查了您的目标是否可以使用 Contact service 实现,但不幸的是,我找不到它。所以,在你的情况下,为了达到你的目的,我想建议使用PeopleAPI。当人 API 用于此时,脚本如下。

示例脚本:

在您使用此脚本之前,please enable People API at Advanced Google services。并且,请设置变量。

function myFunction() {
  const familyName = "###";
  const givenName = "###";
  const emailAddress = "###";
  const imageUrl = "###";

  // 1. Create contact.
  const resource1 = { emailAddresses: [{ value: emailAddress }], names: [{ familyName: familyName, givenName: givenName }] }
  const resourceName = People.People.createContact(resource1).resourceName;
  
  // 2. Add cover photo to the created contact.
  const resource2 = { photoBytes: Utilities.base64Encode(UrlFetchApp.fetch(imageUrl).getContent()), personFields: "coverPhotos" };
  People.People.updateContactPhoto(resource2, resourceName);
}
  • 在这个脚本中,假设你的图片URL是图片文件的直接link。请注意这一点。

注:

  • 当你想为现有联系人添加封面照片时,也可以使用以下脚本。在此示例脚本中,使用电子邮件地址搜索现有联系人。

      function myFunction2() {
        const emailAddress = "###";
        const imageUrl = "###";
    
        // 1. Search contact using the email address.
        const contacts = People.People.searchContacts({ query: emailAddress, readMask: "emailAddresses,names" }).results.filter(c => c.person.emailAddresses.map(m => m.value).includes(emailAddress));
    
        // 2. Add cover photo to the retrieved contact.
        if (contacts.length > 0) {
          const resource2 = { photoBytes: Utilities.base64Encode(UrlFetchApp.fetch(imageUrl).getContent()), personFields: "coverPhotos" };
          People.People.updateContactPhoto(resource2, contacts[0].person.resourceName);
        }
      }
    

参考文献: