Hola necesito ayuda con la consulta de un webservice, intento hacer un consumo del mismo a través de .getJSON
pero me marca el siguiente error: Uncaught SyntaxError: Unexpected token :
.
Al parecer es el JSON por el cuál me da ese error pero no se porque lo hace, ya comprobé y el JSON está bien estructurado, espero que me puedan ayudar y gracias.
Dejo el código completo aquí:
<html>
<head>
<title>Cliente WS</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript">
var JSON = "http://dark6425.0lx.net/webservice/cafe/select.php?categoria=PO";
$.getJSON(JSON + '&callback=?', function (info) {
var dato_01 = info.data[0].nombre;
var dato_02 = info.data[0].categoria;
var dato_03 = info.data[0].clave;
console.log(dato_01);
});
</script>
</head>
<body>
</body>
</html>