Skip to content

Instantly share code, notes, and snippets.

@blewert
Created March 19, 2015 12:44
Show Gist options
  • Select an option

  • Save blewert/5823fe505ac24666c964 to your computer and use it in GitHub Desktop.

Select an option

Save blewert/5823fe505ac24666c964 to your computer and use it in GitHub Desktop.
$(document).ready(function()
{
//var articlesURL = "http://data.bbc.co.uk/bbcrd-juicer/articles.json?apikey=YB0MY3VMHyllzPqEf5alVj5bUvGpvDVi";
var articlesURL = "http://data.test.bbc.co.uk/v1/bbcrd-newslabs/creative-works?point=53.38,-1.47&radius=15km&limit=5&apikey=YB0MY3VMHyllzPqEf5alVj5bUvGpvDVi";
$.ajax({ url: articlesURL }).done(function(data)
{
//articles:
console.log(data["@graph"]);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment