How to upload multiple images to facebook fanpage

Hi everyone!
I don’t know how to upload multiples images to Facebook Fanpage.

The idea is as follows:

  1. Have a Google Drive folder containing all images/videos
  2. Have a Google Sheet containing the content: column C “Image” will contain the file name of the image/video.
  3. I am using the following follow, but it works exactly as I want.
    Hope to get help.



blueprint (3).json (26.2 KB)

What’s the issue, exactly?

For starters, you might want to share the error in the Facebook Pages module.

Hi @Tully_Lanter
I set up as follows:





After running, it gives the following result:





The first issue I see is that your Google Drive module passes two file names in a single query.

What you want to do is “find the file named "IMG_3475" and find the file named "IMG_3474"”.

What your configuration actually does is “find the file named "IMG_3475,IMG_3474"”. That name doesn’t exist, therefore it returns no results, therefore nothing happens in the subsequent modules.

I would either:

a) Split the file names within Make.

b) Store the file names in separate rows in the spreadsheet.

Either way, you’ll end up with one Google Drive query per file name.

Yeah, I did it.
Thank you so much for supporting me and helping me understand the nature of the problem. Thanks!