我需要使用jquery获取谷歌联系人。我已经成功完全实施。但问题是我无法获取该联系人的姓名。谷歌只是提供该用户的电子邮件地址。用户不提供其他信息。所以我想念一些东西。
这里我附上完整的代码并附上回复。
以下是完整代码
<script type="text/javascript" src="https://apis.google.com/js/client.js"></script>
<script type="text/javascript">
var clientId = "google_clientId";
var apiKey = "google_api_key";
var scopes = 'https://www.google.com/m8/feeds/';
$(document).on("click", ".googleContactsButton", function (e) {
gapi.client.setApiKey(apiKey);
window.setTimeout(authorize);
});
function authorize() {
gapi.auth.authorize({client_id: clientId, scope: scopes, immediate: false}, handleAuthorization);
}
function handleAuthorization(authorizationResult) {
if (authorizationResult && !authorizationResult.error) {
$.get("https://www.google.com/m8/feeds/contacts/default/full?alt=json&access_token=" + authorizationResult.access_token + "&alt=json",
function (response) {
//process the response here
console.log(JSON.stringify(response));
});
}
}
</script>
以下是API的响应
[
{
"id": {
"$t": "http://www.google.com/m8/feeds/contacts/ishan%40inheritx.com/base/87427988f9359bf"
},
"updated": {
"$t": "2016-07-21T08:09:55.053Z"
},
"category": [
{
"scheme": "http://schemas.google.com/g/2005#kind",
"term": "http://schemas.google.com/contact/2008#contact"
}
],
"title": {
"type": "text",
"$t": ""
},
"link": [
{
"rel": "http://schemas.google.com/contacts/2008/rel#edit-photo",
"type": "image/*",
"href": "https://www.google.com/m8/feeds/photos/media/ishan%40inheritx.com/87427988f9359bf/1B2M2Y8AsgTpgAmY7PhCfg"
},
{
"rel": "self",
"type": "application/atom+xml",
"href": "https://www.google.com/m8/feeds/contacts/ishan%40inheritx.com/full/87427988f9359bf"
},
{
"rel": "edit",
"type": "application/atom+xml",
"href": "https://www.google.com/m8/feeds/contacts/ishan%40inheritx.com/full/87427988f9359bf/1469088595053001"
}
],
"gd$email": [
{
"rel": "http://schemas.google.com/g/2005#other",
"address": "prakash@inheritx.com"
}
]
}
]
作为回应,我们没有找到任何字段,如名字和姓氏。任何帮助都会很感激。
但如果我手动添加名称,那么它会在标题键中显示我。但如果该联系人姓名是从谷歌+同步,那么它会显示空白。
由于
答案 0 :(得分:1)
在网址末尾添加&amp; v = 3。这将填充名称字段。但是,由于响应中的标题字段为空,这意味着此特定联系人没有应用任何名称。
此外,不相关且无害,但看起来你在URL查询参数中指定了两次alt = json。
答案 1 :(得分:0)
我们没有找到任何字段,如名字和姓氏。任何帮助将不胜感激
获取联系人的全名有点棘手。使用oauth playground,Contactsv3,这是我如何做到的:
首先,您需要了解联系人的 contactId 。怎么样?
GET https://www.google.com/m8/feeds/contacts/{your_userEmail}/full
此URI请求将返回与您的电子邮件关联的所有联系人。现在,contactId位于XML <id> tag
中。
<id>http://www.google.com/m8/feeds/contacts/../base/123456789abcdefg</id>
在这种情况下, 123456789abcdefg 是某个人的 contactId 。全名位于<title>
标记中
<title type="text">John Carmack</title>
要分别获取此人的联系方式,与步骤1不同,请使用:
GET
https://www.google.com/m8/feeds/contacts/{your_userEmail}/full/123456789abcdefg
现在由您来解析此响应并相应地使用它。我还没有检查过是否有JSON格式,但我希望这会对你有所帮助。