Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LispyAriaro/107a8b9e7de116fc47c2ac1a5789a5fc to your computer and use it in GitHub Desktop.
Save LispyAriaro/107a8b9e7de116fc47c2ac1a5789a5fc to your computer and use it in GitHub Desktop.
Google Contacts API v3 Javascript sample
<html>
<head>
<script src="https://apis.google.com/js/client.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script>
function auth() {
var config = {
'client_id': 'OAUTH_CLIENT_ID',
'scope': 'https://www.google.com/m8/feeds'
};
gapi.auth.authorize(config, function() {
fetch(gapi.auth.getToken());
});
}
function fetch(token) {
$.ajax({
url: 'https://www.google.com/m8/feeds/contacts/default/full?alt=json',
dataType: 'jsonp',
data: token
}).done(function(data) {
console.log(JSON.stringify(data));
});
}
</script>
</head>
<body>
<button onclick="auth();">GET CONTACTS FEED</button>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment