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

31 visualizzazioni (ultimi 30 giorni)
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 Commento
Mohammad Sami
Mohammad Sami il 2 Set 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

Accedi per commentare.

Risposta accettata

Serge
Serge il 7 Set 2020
Modificato: Serge il 7 Set 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

Più risposte (1)

Serge
Serge il 9 Set 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

Prodotti


Release

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by