Hey @Jamesp! If you’re reporting an issue with a flow or an error in a run, please include the run link and make sure it’s shareable so we can take a look.
-
Find your run link on the history page. Format:
https://www.gumloop.com/pipeline?run_id={{your_run_id}}&workbook_id={{workbook_id}}
-
Make it shareable by clicking “Share” → ‘Anyone with the link can view’ in the top-left corner of the flow screen.
-
Provide details about the issue—more context helps us troubleshoot faster.
You can find your run history here: https://www.gumloop.com/history
Hey @Jamesp,
The issue with this URL is that it’s being passed as a list instead of a single string. Right now, it looks like this:
['https://www.collegehunkshaulingjunk.com/']
But the Web Scraper node expects just the string:
https://www.collegehunkshaulingjunk.com/
That means the values are being sent into the subflow in the wrong format. As a quick workaround, you can add an Extract Data node to clean up the URL before passing it into the scraper. This will ensure it’s a single string value rather than a list.
oh got it. thanks