How do I open a website in a browser, enter login data and get the resulting page content automatically?

36 次查看(过去 30 天)
Hi,
How do I open a website in a browser, enter login data and get the resulting page content automatically?
I found this:
the author wrote:
I did this:
url = 'http://www.myurl.com';
options = {'Username', 'myUsername', 'Password', 'myPassword', 'Timeout', 10};
z = webwrite(url, options);
What I get in z is just the source code of the login page. Do I have to use the URL of the login page or can I use the URL I want to go to after login? How would I get that content, when I have to use the login URL? Do I have to do something with a cookie? Could it be that the website which I try to login do not support RESTful API? How can I find out?
I have same questions and did not find the answers. Who can help?

回答(1 个)

Eric Delgado
Eric Delgado 2022-3-17
Hi! You can use webread and weboptions together. And you must point to the page that you want to download (HTML code or json text, for example).
message = webread('www.myurl.com', weboptions('Username', 'YourUsername', 'Password', 'YourPassword'))

类别

Help CenterFile Exchange 中查找有关 String Parsing 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by