Created
May 20, 2014 10:56
-
-
Save linmic/7a69aaacbde3eb621dd2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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