删除Google共享联系人

时间:2016-01-05 16:15:02

标签: google-api google-apps google-shared-contacts

我已经能够通过API成功添加联系人,但我无法删除我已创建的联系人。

https://sites.google.com/site/scriptsexamples/new-connectors-to-google-services/shared-contacts

function deletecontact()
{
  SharedContactsApp.setOAuth2AccessToken(getSharedContactsService().getAccessToken    ());
  var contacts = SharedContactsApp.getContactById('5c8b05ab8c9f68c6');
  SharedContactsApp.deleteContact('5c8b05ab8c9f68c6');
 }

我收到以下错误消息:

TypeError: Cannot call method "getElements" of undefined. (line 200, file "Code", project "SharedContactsApp")

如何删除此错误?

此外...

我尝试使用下面的代码设置职位,但收到以下错误:

的ReferenceError:"轮廓"没有定义。 (第142行,文件"代码")

function changeJobTitle2() 
{
   SharedContactsApp.setOAuth2AccessToken(getSharedContactsService().getAccessToken    ());
  var contact = SharedContactsApp.getContactById('82f05968956d66f');
  profile.setJobTitle('Google Apps Expert');
}

1 个答案:

答案 0 :(得分:0)

我明白了。

function hailmary() 
{
  SharedContactsApp.setOAuth2AccessToken(getSharedContactsService().getAccessToken());
  var contact = SharedContactsApp.getContactById('82f05968956d66f');
  SharedContactsApp.deleteContact(contact)
}