Borrar filtros
Borrar filtros

Acquiring a JSON from a webpage

16 visualizaciones (últimos 30 días)
Tero
Tero el 30 de Jul. de 2021
Comentada: Yongjian Feng el 3 de Ag. de 2021
Hi all,
I'd need to find a way to acquire a JSON file from a web portal. I can do it manually just by going to the site and save in JSON (see screenshot). However, I'd like to be able to do it directly from Matlab, but webread just returns the HTML code, not the data I'm looking for. I tried using the options:
options = weboptions('ContentType','json');
But it failed. Any idea is welcome
Thanks,
Tero

Respuestas (1)

Yongjian Feng
Yongjian Feng el 30 de Jul. de 2021
Try this:
headers = {'Content-Type' 'application/json'; 'Accept' 'application/json'};
options = weboptions('HeaderFields',headers);
webread('http://ip.jsontest.com', options)
  2 comentarios
Tero
Tero el 3 de Ag. de 2021
Thanks,
I tried this with my site, but it didn't work yet. Does it matter the data is behind a login screen? I can see it works fine with the example you gave
Yongjian Feng
Yongjian Feng el 3 de Ag. de 2021
I see. It seems like you just got back the html for the login page. In general, there shall be an API key for authentication. Or try to put your username/password into the headers as well.

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by