0

我正在使用 Contacts API 来获取域中所有联系人的列表,以便向用户提供建议。

我使用“ https://www.google.com/m8/feeds/contacts/example.com/full ”作为 URL。得到错误说“只有管理员可以请求属于示例的条目”。

如何使用 API 获取域联系人列表?我可以使用此网址“ https://www.google.com/contacts/?hl=en&tab=wC#contacts/group/27/Directory ”从浏览器访问联系人。

请帮忙......!!!

编辑 1(Jay 参考):
我的代码是: service.setHeader("GData-Version", "1.0"); ContactFeed contactEntry= service.getFeed(new URL("https://www.google.com/m8/feeds/gal/example.com/full?alt=json&q=mail@example.com"), ContactFeed.class);

4

1 回答 1

0

这对我有用。 $.ajax({ type : "GET", url: "https://www.google.com/m8/feeds/gal/domain.com/full", data: { alt: "json", q:query, access_token:access_token, 'max-results':10 }, success: function(data) { } });

范围:https://www.google.com/m8/feeds/

于 2015-07-24T08:05:09.650 回答