SO I am using GROUPON API to grab their deals, I am also using jquery's get to get a json response. This is my jquery
$.get('http://api.groupon.com/v2/deals.json',
{
division_id:'boston',
client_id:'mykey',
},
function(deals){
$('#response').html(deals.soldQuantity);
}, 'json');
After this, I do not get a response. I have checked entering the web request manually and it does work. Am I missing something? thanks