Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Log In on web page for downloading file

Hi everyone,

 

I'm a beginner in Talend DI.

 

I have to download a csv file since a HTML link on an intranet site, but this need authentification before to download file.

 

So I try to use a TFileFetch with some parameters to try to log in, but I can't. In all case I've the html source code of the page and not the csv file I need.

 

So we need to authentificate but I don't know how with talend component.

 

To detail my process here the job I use :

JibsJibs

 

Here the parameters I use to try to download the page

 

ParametersParameters

Some parameters I've tried but nothing change :df



To see the whole post, download it here
Labels (3)
1 Solution

Accepted Solutions
Jesperrekuh
Specialist
Specialist

Did you set your headers correctly?
Suggest using fiddler and check what happens if you do it manually through a website.
Copy these headers and set them in your component.

Although I really really suggest using cURL, I tried it with components too, didnt work.
Easy to set cookies... very usefull. Supported on windows and unix/linux. Your jobs wil work on both os (if cUrl installed).

View solution in original post

2 Replies
Jesperrekuh
Specialist
Specialist

Did you set your headers correctly?
Suggest using fiddler and check what happens if you do it manually through a website.
Copy these headers and set them in your component.

Although I really really suggest using cURL, I tried it with components too, didnt work.
Easy to set cookies... very usefull. Supported on windows and unix/linux. Your jobs wil work on both os (if cUrl installed).
Anonymous
Not applicable
Author

thanks that resolve my problem.