Hello,
I am getting multiple image URLs, I need to download them and upload them one by one in WordPress. After that, I need the URLs from my website in a single string (separated by a new row).
The only way it came to my mind was to do it with an iterator and at the end of the process to get the data with an array aggregator. The problem is that the array aggregator is doing multiple operations and I can’t find a way to stop it.
Another thing is that after I get the single string of URLs, the scenario needs to continue but without iterating.
Here are some screenshots:
-
Getting the URLs and downloading the images
-
Uploading to WordPress one by one and getting the details. I need only the Source URLs from all the operations in one string:
-
I need to continue the scenario without iterating.
I hope that I was clear enough. Is there a solution to this, or is there maybe a better way to do this?
Thanks!
P.S. I tried with an array aggregator but It keeps doing separate operations