Buscar
Social
Ofertas laborales ES

Foro sobre Java SE > $.getJSON

Hola, este es mi primer post. Estoy usando esto:
function numbers() {

$.getJSON('http://api.open-notify.org/astros.json?callback=?', function(persons) {

cantidad = persons.number;
num_per.innerHTML = cantidad;

});
};

funciona correctamente.
No puedo lograr que funcione getJSON con una URL "https", por ejemplo esto:
$.getJSON('https://api.wheretheiss.at/v1/satellites/25544.json?callback=?', {

me pueden ayudar. Mis conocimientos son muy limitados, solo necesito un ejemplo q funcione para poder entenderlo.
Gracias!

mayo 10, 2014 | Registered Commenterdanielfelix

Esto $.getJSON no es Java, es Javascript.

http://api.jquery.com/jquery.getjson/

mayo 10, 2014 | Registered Commenterchoces