Google Contacts API v3 does not provide a JavaScript SDK.
However, if you want to handle the contact importing on the client-side you can do it with an ajax call :
var clientId = 'XXX';
var apiKey = 'XXX';
var scopes = 'https://www.google.com/m8/feeds';
$(document).on('click', '.js-google_contacts', function() {
gapi.client.setApiKey(apiKey);
window.setTimeout(checkAuth, 3);
});
function checkAuth() {
gapi.auth.authorize({
client_id: clientId,
scope: scopes,
immediate: false
}, handleAuthResult);
}
function handleAuthResult(authResult) {
if (authResult && !authResult.error) {
$.get('https://www.google.com/m8/feeds/contacts/default/full?alt=json&access_token=' +
authResult.access_token + '&max-results=700&v=3.0',
function(response) {
//Handle Response
});
}
}
Hope that helps!
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…