@Marco
To download a file from a URL that requires authentication in your make.com scenario, you can use the HTTP module to create a custom request that includes your authentication credentials. Here's a general approach to achieve this:
1. **HTTP Module**: Use the HTTP module to make a GET request to the URL.
2. **Basic Authentication**: If the authentication is Basic Auth, you will need to encode your username and password in base64 and include it in the Authorization header.
3. **Custom Headers**: Add any custom headers required by the server, such as content type or accept headers.
4. **SSL Verification**: If the server uses a self-signed certificate (as suggested by the IP address in the URL), you might need to disable SSL certificate verification in the HTTP module settings.
Here's a step-by-step guide:
1. Add the HTTP module to your scenario.
2. Set the method to GET.
3. Enter the URL you need to download the file from.
4. In the headers section, add an Authorization header. The value should be
Basic
followed by your base64-encoded username and password. You can encode your credentials using a base64 encoder. The format is
username:password
encoded in base64.
5. If needed, add additional headers or disable SSL certificate verification.
6. Run the scenario to test the download.
Please note that handling credentials in scenarios should be done with caution to ensure they are stored and transmitted securely. If you're unsure about how to proceed or need more specific instructions, please ask support for more info on this.