如何使用angular5中的API从gmail导入联系人列表?

时间:2018-07-16 05:09:30

标签: angular angular5 gmail-api gapi import-contacts

我正在使用this代码从Google导入联系人列表。一切都很好,但无法从中获得任何结果。

fetchmail()方法返回: 错误{}

这是我的fetchmail()方法:

fetchmail() {
console.log("check6");
gapi.load('client: auth2', () => {
  console.log('check7');
  gapi.auth2.getAuthInstance({
    apiKey: 'APIKEY',
    discoveryDocs: ['https://people.googleapis.com/$discovery/rest?version=v1'],
    clientId: '<MyClientID>.apps.googleusercontent.com',
    scope: 'profile email https://www.googleapis.com/auth/contacts.readonly'
  }).then(() => {
    console.log('check8');
    return gapi.client.people.people.connections.list({
      resourceName: 'people/me',
      personFields: 'emailAddresses, names'
    });
  }).then(
    (res) => {
      console.log("Res: " + JSON.stringify(res));
      this.userContacts.emit(this.transformToMailListModel(res.result));
      console.log("Res:" + JSON.stringify(res.result));
    },
    error => console.log("ERROR " + JSON.stringify(error))
  );
});

从浏览器控制台中,我得到以下结果:

enter image description here

任何人都可以帮助我发现问题或提出解决问题的建议。

谢谢!

0 个答案:

没有答案