What's the MatLab WEBSAVE equivalent of this WGET command?

31 visualizaciones (últimos 30 días)
Serge
Serge el 2 de Sept. de 2020
Respondida: Serge el 9 de Sept. de 2020
I can't get websave to work (on Win10, R2020a).
What is the MatLab equivilent of this wget command. Note it uses a proxy and authenticaation.
wget --post-data "identity=MYUSER&password=MYPASS&query=PAGEURL" https://AJAXAUTH_URL -e https_proxy=PROXYIP:PORT -O OUTFILE
The above can be broken into two, to reuse the authentication many times. What is the MatLab equivilent here?
wget --save-cookies=COOKIEPATH AUTHURL --post-data "identity=MYUSER&password=MYPASS" -e https_proxy=PROXYIP:PORT -O nul
wget --load-cookies=COOKIEPATH PAGEURL -e https_proxy=PROXYIP:PORT -O OUTFILE
Thank you
  1 comentario
Mohammad Sami
Mohammad Sami el 2 de Sept. de 2020
See if there following answers helps you to get the cookie. https://www.mathworks.com/matlabcentral/answers/307689-sending-session-cookie-with-each-subsequent-http-request-in-matlab

Iniciar sesión para comentar.

Respuesta aceptada

Serge
Serge el 7 de Sept. de 2020
Editada: Serge el 7 de Sept. de 2020
Found my own answer to the single command question, need to use webwrite instead of webread.. very counterintuative!
data = webwrite(AUTHURL,'identity',USERNAME,'password',PASSWORD,'query',PAGEURL);
To use proxy: Home > Prefferences > Web

Más respuestas (1)

Serge
Serge el 9 de Sept. de 2020
This command seems to work for a wegpage but not for download of a file!
data = webwrite(AUTHURL,'identity',USERNAME,'password',PASSWORD,'query',PAGEURL);
To setup proxy goto: Home > Prefferences > Web

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by