I’m trying to set up an integration using the YouTube Data API. Here are my specific needs:
-
Looping: The API returns a maximum of 50 items per call. I want to retrieve 100 items by making two calls. I’ve managed to chain two HTTP modules using the
nextPage
token, but is this the only way? Can I achieve this in a more automated manner, perhaps with a script? -
Merging Responses: I need to merge 16 responses collected over various weeks (current week, 2 weeks ago, 4 weeks ago, 8 weeks ago) into a single array. How can I do this effectively?
-
Adding Fields to Dictionaries: I want to add a
category
field to each item in the response lists, indicating which week’s data they belong to. How can I implement this? -
JavaScript or Python Code: I see there is a “Custom JS” module, but it’s paid. Are there free options available? While I’m using a no-code tool, I feel some simple solutions might be more feasible with code.
-
Set Variable: I’m finding it cumbersome to store variables by creating individual modules. Can I use a dictionary to streamline this process? Perhaps by referencing module values in the JSON creation process and making it accessible through drag-and-drop or similar means?