I have url of zoho creator from there i can get json data.
here is this url "
https://creator.zoho.com/api/json/yugapp-feedback/view/Guest_Book_View/apikey="
This script i am using for read json data
- $(document).ready(function() {
- $.ajax({
- url: 'https://creator.zoho.com/api/json/yugapp-feedback/view/Guest_Book_View/apikey=',
- type: 'GET',
- dataType: 'json',
- contentType: 'application/json; charset=utf-8',
- success: function (data) {
- $.each(data, function (i, item) {
- $("#results").append(item.Comments);
- alert("#results");
- });
- }
- });
- });
I am not getting data at all when i load this script.
Could any one please explain me how should i get data from that URL .
Thanks in advance