vote up 1 vote down star

I have this code, and have also tried something similar using the $.getJson function:

jQuery(document).ready(function(){
    var kiva_url = "http://api.kivaws.org/v1/loans/newest.json";

    jQuery.ajax({
    	type: "GET",
    	url: kiva_url,
            data:"format=json", 
    	success: function(data){
    		alert("here");
    		jQuery.each(data.loans, function(i, loan){
    			jQuery("#inner_div").append(loan.name + "<br />");
    		});
    	},
    	dataType: "jsonp",
    	error: function(){
    		alert("error");
    	}
    });

});

When I look in Firebug it is returning an "invalid label" error. I've searched around a bit some people refer to using a parser to parse the results. I can see the results coming back in Firebug. Can someone point to an example of what I should be doing?

The Firebug error:

invalid label =1249440194924&format=json&">http://api.kivaws.org/v1/loans/newest.json?callback=jsonp1249440194660&=1249440194924&format=json& Line 1

Sample output of what the json looks like can be found here: http://build.kiva.org/docs/data/loans

flag

4 Answers

vote up 1 vote down

maybe this can help with jsonp:

http://remysharp.com/2007/10/08/what-is-jsonp/

link|flag
vote up 1 vote down check

Well I found the answer...it looks like kiva does not support jsonp which is what jquery is doing here -

http://groups.google.com/group/build-kiva/browse_thread/thread/9e9f9d5df821ff8c

...we don't have plans to support JSONP. Supporting this advocates poor security practices and there are already some good ways to access the data from JavaScript that protect your application and your users. Here's a great article on the subject:

http://yuiblog.com/blog/2007/04/10/json-and-browser-security/

While the risk to Kiva lenders is low now since we are only dealing with public data, allowing private lender data to be imported via script tags is a risk further down the road. Our thought is the risk (and complexity added to create secure applications) is not worth the benefit to developers.

Writing a server-side proxy for the feeds you need is the most common solution to accessing data in browser-based applications. Some other tricks exist using iFrames. The best hope is the new breed of client- based technologies/standards that will let browser-based JavaScript access cross-domain resources securely ( http://dev.w3.org/2006/waf/access-control/ http://json.org/JSONRequest.html ). Some tools like BrowserPlus and Gears let you play with these today, but you won't be able to depend on these in the wild for a while.

As a final note, I'll point out that anyone using JSON responses in JavaScript should either parse JSON explicitly or validate the JSON before taking eval() to it. See here:

http://www.JSON.org/js.html

Linked from the page is a great reference implementation of the proposed ECMAScript JSON parser interface, JSON.parse().

Cheers, skylar

link|flag
Thanks Brendan, you just saved me a bunch of time! – skriv Aug 12 at 22:50
vote up 0 vote down

Where does the error occur? Does error occur when you try to loop through the ajax data and append it to the inner_div? If yes, please show us what the data.loans look like.

Also, there is a typo in your code:

            jQuery.each(data.loans, function(i, loan){
                    jQuery("#inner_div").append(loan.name + "<br />"); //It should be loan.name and not laon.name
            });
    },
link|flag
Fixed my typo - I believe it's on the retrieve- If I take out that jquery loop I still get the error. – brendan Aug 5 at 2:40
which line gives the error? Can you include Firebug error snapshot? – SolutionYogi Aug 5 at 2:43
added firebug console output – brendan Aug 5 at 2:46
vote up 0 vote down

function json(){

		var url="http://192.172.2.23:8080/geoserver/wfs?request=GetFeature&version=1.1.0&outputFormat=json&typeName=topp:networkcoverage&CQL_FILTER= topp:CELL_ID='410-07-301-31781' Or topp:CELL_ID='nnn'&callback=?";
			jQuery.getJSON(url,function(data)
		 {
		 	alert("received");
		 	alert("Symbol: " + data.type + ", Price: " + data.bbox);
		});




		}

ERROR in FF

Error: invalid label Source File: http://192.172.2.23:8080/geoserver/wfs?request=GetFeature&version=1.1.0&outputFormat=json&typeName=topp%3Anetworkcoverage&CQL%5FFILTER=%20topp%3ACELL%5FID=%27410-07-301-31781%27%20Or%20topp%3ACELL%5FID=%27nnn%27&callback=jsonp1254384583359&%5F=1254384584325 Line: 1, Column: 1 Source Code: {"type":"FeatureCollection","features":[{"type":"Feature","id":"networkcoverage.13333","geometry":{"type":"MultiPolygon","coordinates":[[[[33.67787000000004,73.02342000000004],[33.68024256600006,73.02193745600005],[33.68066767800008,73.02342000000004],[33........

any idea wots wrong here.. i would realy appreciate some help here fellas

link|flag
you should post this as a separate question – brendan Oct 1 at 14:33
alright i did stackoverflow.com/questions/1503193/… – Imran Oct 2 at 4:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.