我正在使用Contacts API获取域中所有联系人的列表,以便向用户提供建议。
我正在使用“https://www.google.com/m8/feeds/contacts/example.com/full”作为网址。 得到了错误说“只有管理员可以请求属于示例的条目”。
如何使用API获取域名联系人列表? 我可以使用此网址“https://www.google.com/contacts/?hl=en&tab=wC#contacts/group/27/Directory”来访问浏览器中的联系人。
请帮助...... !!!编辑1(有杰伊参考):
我的代码是:
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);
答案 0 :(得分: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)
{
}
});