Posting Reels - Error code 2207026

Hello Everyone!

I want your guys advice on something, when i try to upload a reel to Instagram using the module. I just get this output:

image

I have done my research and it has something to do with Meta themselevs, which is always the case. They say that the video dont support the right format to be posted to IG, which is SUPER weird, becuase the video i tried posting is straight from IG (using a RSS feed).

I got it working when it came to posting photos. But have a problem with reels.

I just wanted to ask if you have encountred this before and if you have a solution. Thanks!

Welcome to the Make community!

1. Screenshots of module fields and filters

Please share screenshots of relevant module fields and filters in question? It would really help other community members to see what you’re looking at.

You can upload images here using the Upload icon in the text editor:
Screenshot_2023-10-07_111039

2. Scenario blueprint

Please export the scenario blueprint file to allow others to view the mappings and settings. At the bottom of the scenario editor, you can click on the three dots to find the Export Blueprint menu item.

Screenshot_2023-08-24_230826
(Note: Exporting your scenario will not include private information or keys to your connections)

Uploading it here will look like this:

blueprint.json (12.3 KB)

3. And most importantly, Output bundles

Please provide the output bundles of the modules by running the scenario, then click the white speech bubble on the top-right of each module and select “Download output bundles”.
Screenshot_2023-10-06_141025

A.

Save the bundle contents in your text editor as a bundle.txt file, and upload it here into this discussion thread.

Uploading it here will look like this:

bundle.txt (12.3 KB)

B.

If you are unable to upload files on this forum, alternatively you can paste the formatted output bundle in this manner:

  • Either add three backticks ``` before and after the code, like this:

    ```
    input/output bundle content goes here
    ```

  • Or use the format code button in the editor:
    Screenshot_2023-10-02_191027

Providing the output bundles will allow others to replicate what is going on in the scenario even if they do not use the external service.

Following these steps will allow others to assist you here. Thanks!

2 Likes

Sure!

  1. Module fields +

  2. Blueprint
    blueprint.json (12.5 KB)

  3. Inside the instagram module:

Hope that helps! Thanks.

This is NOT a direct link to a video file. This is a link to an Instagram post, which happens to have a video on the page.

6c4781840f988e316183b0b12aa8621904d24c2f

A video file link would have an extension, like video.mp4

To get a video from an existing Instagram post, you need to perform “Web Scraping” techniques or APIs to Download the Video file first, which could look something like this:

2 Likes

Okay i understand!

If you dont mind me asking?
Where should i put the webhook url? Should i put the RSS url in the HTTP module or the direct link from a IG post?

Thanks again.

I would use something like this API https://rapidapi.com/neotank/api/instagram130/ (as shown in my screenshot), to get the post image/video URL(s).

Make doesn’t have an integration for RapidAPI though.

If the external service has a Developer API Reference/Documentation then you should be able to integrate the endpoints in Make using the generic HTTP “Make a request” module.

3 Likes

I got the rapid API working with the HTTP module, i get the video url now like this:

Do you know how i can seperate the data in the long string?
Like making it like an array or something, so i just can take the video url. Becuase if i want to map the url in the Instagram Reel module, i need to map the data (longstring) item and then it dosent work:

If i can seperate the info in the data long string, i think i can make it work! Thansk again.