I am having difficulty returning any JSON from the Twitter API. All I want to do is get my Twitter feed as JSON, and have tried to do it like this:
$(document).ready(function(){
$.ajax({
url: 'https://api.twitter.com/1.1/user_timeline/johnrobertpett.json',
dataType: 'jsonp',
success: function() {
console.log(data);
}
});
});