What is your goal?
post a reel to instagram
What is the problem & what have you tried?
I continaully get this error. I’ve manually uploaded the video and it works fine. I’m pulling the video from R2 on cloudflare and i’ve done it in the past and it works. I’ve tried to delete and re-add the moduel and areauth my facebook account to no avail. can’t seem to crack it. anyone??
Error messages or input/output bundles
Bundle 1Collection
status_code ERROR
status Error: Media upload has failed with error code 2207076
Post ID 18079997168277481
Hello,
Could you confirm that your scenario was working before and recently stopped with the Media upload has failed with error code 2207076 error?
If so – this has been common lately and it’s not Make-related. Meta’s API has been having issues. The best solution is to implement an exponential retry policy in your scenario. For example using sleep module and trying once again.
If, on the other hand, this configuration has never worked in this scenario – please share your setup so we can take a closer look.
Have a nice day,
Michal
Meta broke something with their API again… I’m getting the same error on my scenarios when posting reels. Add a break error handler to retry it after a few minutes and eventually it should go through.
Instagram error code 2207076 is related to video upload failures, typically appearing during the media container creation step before the actual publish. This specific code usually signals that Instagram could not fetch or process the video from the URL you provided.
The first thing to verify is that the video URL is publicly accessible without any authentication - Instagram’s API fetches the file server-side, so signed URLs, private cloud storage links, or URLs behind a login will silently fail with this error code. The URL also needs to return the correct Content-Type header (video/mp4) when requested.
Another cause is the video file itself: Instagram requires H.264 encoding, a pixel aspect ratio of 1:1, and specific bitrate and frame rate ranges for Reels. If the file passes the format check, try regenerating the URL if it is expiring - some storage providers issue short-lived links that expire between the time you fetch them and when Instagram tries to download them.
I dealt with a similar issue using Google Drive links, where the file sharing had to be set to anyone with the link before the upload worked. What is the source of the video URL you are passing to Instagram?