Hello,
I have several website from which I need to read data, mostly stored in tables.
For the public website, no issue as I am using I am trying to reader 'HTML Reader'.
For the secured website, the sequence would need to
- navigate first to the login page, (https://members.embuild.be/fr/user/login)
- enter credentials,
- navigate to the secured page containing the desired table
- and read the html table.
After reading several posts, my designed workflow would:
- HttpCaller URL: https://members.embuild.be/fr/user/login, method: POST with body 'Mulitpart / Form data' and the upload: Name - Type - Value = name - String Upload - my@email.com and Name - Type - Value = pass - String Upload - myPassword.
- HttpCaller (En Serie from the first one), URL: https://members.embuild.be/fr/chiffres-et-donnees/indices/cout-des-materiaux/indices-des-materiaux, method : GET, Save response body to an attribute.
- ...
Unfortunately, I cannot go thru the first step. http status code is 200 OK, but the response body of the second http caller is still the html code of the login page.
Any advice or help on th sequence of readers/transformers and configuration would be appreciated.