Hi people,
Summary
I have a Make scenario that post Instagram images to Tumblr. And I’m having trouble posting multiple images as a single Tumblr post.
Scenario Walk Through
I have a scenario that checks Instagram for new posts.
- If it finds one it collects all the hashtags used and trims the caption to remove the hashtag block.
Then
- If it is a single image it posts the image to tumblr.
- When there are multiple images (an Instagram album), it iterates through the images downloading data via HTTP and aggregates it into an array.
Problem
The problem I’m having is that the Tumblr module then creates one post per image in the array, rather than one post with multiple images.
More Details
In the “Array aggregator” module:
- Target structure type
-
- Tumblr - Create a Post :; Photos
In the “Tumblr” module:
- Type
-
- Photo
- Upload photo
-
- via data (multiple photos)
- Photos
-
- Map
-
-
- Array
-
Solution Looking For
What I would like to do is send the array of images to the Tumblr module and have the module post all images as one post.
Is there a way to get the Tumble module not to iterate over the output of the Array Aggregator module, and just process the array inside the Tumble module?