I am calling geonames with jquery like this
Code:
source: function( request, response ) {
$.ajax({
url: "http://ws.geonames.org/searchJSON",
dataType: "jsonp",
data: {
q: request.term,
featureClass: "P",
style: "full",
maxRows: 10
},
Why does it work without a username?