Hello everyone
I’ll briefly share the context of my problem:
1.- I have a HubSpot form that attaches a CSV file within a specific property of a contact.
2.- I have a workflow that starts its execution once said contact property has a known value.
3.- Within the workflow I define a custom code that attempts to do the following:
* Read and store the signed URL of the CSV file stored in the contact property. (I have no problem here)
* Through the signed URL of the CSV file and through a Python request, read the content of all rows of the CSV file. So that with the information of each row I can create a contact, through the HubSpot Contacts API.
4.- However, when reading the content of the file, it is not displayed correctly, and the information displayed in the console
refers to the fact that I have to log in to HubSpot.
How could I solve this? Any ideas, advice or suggestions?
Or rather: how can I correctly read the content of my CSV files through their signed URL?
Below is a screenshot of my code:
Below is a screenshot of the console output when reading the CSV file:

