Hey there.
Im trying to use the good'ol Creator->HTTPCaller->JSon'er method for the data here:
https://www.fega.gob.es/atom/es.fega.sigpac.xml
Where I am basically sending requests to fetch certain part of the data and then do some analysing on it before exporting to a format. But there is a problem here which is that the service requests you to accept to terms and conditions before you can start fetching.
Doing this through browser ain't a problem as you just click on the "LEER Y ACEPTAR LAS CONDICIONES" button and read through the document that pops-up and then press "ACEPTAR LLAS CONCIONES" which brings you to the data.
It is using the HTTPCaller where i have the problem, cause just fetching the data (through the same URL) gives me the _response_body:
<html>
<body>
No has aceptado las condiciones y no puedes ver los ficheros
</body>
</html>
or basically "You have not accepted the conditions"
Does anyone have suggestions how to include accepting the terms and conditions, thus getting to the data itself, within a workspace?
PS there is a QGIS python plugin for the same purpose here if that helps:
GitHub - geomatico/qgis-sigpac: Plugin to download SIGPAC parcels
-Hlynur