使用 Google 应用的域共享联系人 API
Domain Shared Contacts API with Google Apps
我正在使用联系人 API 获取域中所有联系人的列表,以便向用户提供建议。
我将“https://www.google.com/m8/feeds/contacts/example.com/full”用作 URL。
得到错误说 "Only administrators can request entries belonging to example".
如何使用 API 获取域联系人列表?。
我可以使用 url "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("<a href="https://www.google.com/m8/feeds/gal/example.com/full?alt=json&q=mail@example.com" rel="nofollow">https://www.google.com/m8/feeds/gal/example.com/full?alt=json&q=mail@example.com</a>"), ContactFeed.class);
这对我有用。
$.ajax({
类型:"GET",
url: "<a href="https://www.google.com/m8/feeds/gal/domain.com/full" rel="nofollow">https://www.google.com/m8/feeds/gal/domain.com/full</a>",
数据: {
替代:"json",
q:query,
access_token:access_token,
'max-results':10
},
成功:功能(数据)
{
}
});
范围:<a href="https://www.google.com/m8/feeds/" rel="nofollow">https://www.google.com/m8/feeds/</a>
我正在使用联系人 API 获取域中所有联系人的列表,以便向用户提供建议。
我将“https://www.google.com/m8/feeds/contacts/example.com/full”用作 URL。 得到错误说 "Only administrators can request entries belonging to example".
如何使用 API 获取域联系人列表?。 我可以使用 url "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("<a href="https://www.google.com/m8/feeds/gal/example.com/full?alt=json&q=mail@example.com" rel="nofollow">https://www.google.com/m8/feeds/gal/example.com/full?alt=json&q=mail@example.com</a>"), ContactFeed.class);
这对我有用。
$.ajax({
类型:"GET",
url: "<a href="https://www.google.com/m8/feeds/gal/domain.com/full" rel="nofollow">https://www.google.com/m8/feeds/gal/domain.com/full</a>",
数据: {
替代:"json",
q:query,
access_token:access_token,
'max-results':10
},
成功:功能(数据)
{
}
});
范围:<a href="https://www.google.com/m8/feeds/" rel="nofollow">https://www.google.com/m8/feeds/</a>