Skip to content

Instantly share code, notes, and snippets.

@novalagung
Created November 25, 2012 04:39
Show Gist options
  • Save novalagung/4142420 to your computer and use it in GitHub Desktop.
Save novalagung/4142420 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
function get(p) {
return "https://www.googleapis.com/blogger/v3/blogs/2055792886157683837/" + p +"?key=AIzaSyAYl8yYviScKY6dsHA3qjK3jyKV9_83HP8";
}
$.ajax({
url:get("posts/6467499583973436184"),
dataType: "jsonp",
success: function(data, textStatus, jqXHR) {
console.log(data);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment