Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I need to retrive this json which is placed on this http://itunes.apple.com/rss/customerreviews/id=338010821/json through ajax hit .

1. Can i do this ?
2. i wrote this code. is that correct ?
JavaScript
$.getJSON("http://itunes.apple.com/rss/customerreviews/id=338010821/json", { format: "json" }).done(function (data) {
                $.each(data.items, function (i, item) {
                    debugger;
                    var dd = item;
                });
            });

Actually,
I need to get the google api key for play store so that i can show the KPI's trend?
Posted
Updated 14-Apr-14 23:31pm
v3
Comments
Sunasara Imdadhusen 15-Apr-14 5:34am    
Are you getting any error?
Rajni from delhi 16-Apr-14 5:16am    
nothing is happening..no data it's retriving

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900