I'm working in project to download all artifacts gitlabpages from a list of projects. I need to download .../index.html for each project. When I m trying to do it, I get the first screen of authentication of Gitlab. Perhaps it is access problem.
It is possible to do it ? If Yes how ?
Infos: I have already access to all projects with artifacts.
I'm using a python script to download the content of pages.
response = requests.get(URL_PROJECT)
fileName = "fileName.html"
open("path_to/"+ fileName, "wb").write(response.content)