我正在开发将所有用户的联系人拉出来的GMail插件:
var contacts = ContactsApp.getContacts();
我已在Google API控制台中启用了ContactsAPI并添加了范围: https://www.googleapis.com/auth/contacts.readonly
但错误仍然存在且项目的高级Google服务弹出窗口中缺少联系人API。
答案 0 :(得分:1)
通过反复试验和this hard-to-find list我设法ContactsApp.getContacts()
开始工作。您需要添加此范围:
"oauthScopes": [
"https://www.google.com/m8/feeds",
答案 1 :(得分:0)