Hello 
Our Customer Care Team Agent has found that Make successfully sent the request to Instagram to process the file. But, after an “in progress” status, Instagram rejected it and responded with an error code 2207052
. As per Meta’s documentation, the error indicates an issue with the file itself.
This issue mainly happens when you map the Google Drive URL. For some reason, the Instagram API does not take the image when the Google Drive downloadable link is passed.
In this case, the simplest solution would be to pass the image to an app such as cloud convertor. Map the Google Drive link into the URL field of Cloud convertor and select the output format, and name the file extension in the filename
This will generate a temporary URL as shown below, using which the file can be easily uploaded to the Instagram app. This should resolve your problem.
Please note that Make is sending the request and receiving a 200 status code in response. The rejection is coming from Instagram’s side, and Make does not have control over it.
If you need further clarification, I’d suggest reaching out to Meta support. You can also share the raw request and response details with them for investigation.
{
“response”: {
“status”: 200,
“headers”: {
“etag”: “"fde56ef069e83624b7c4c0e1295eabfd4fd93036"”,
“content-type”: “text/javascript; charset=UTF-8”,
“vary”: “Origin”,
“cross-origin-resource-policy”: “cross-origin”,
“x-app-usage”: “{"call_count":0,"total_cputime":0,"total_time":0}”,
“access-control-allow-origin”: “",
“facebook-api-version”: “v22.0”,
“strict-transport-security”: “max-age=15552000; preload”,
“pragma”: “no-cache”,
“cache-control”: “private, no-cache, no-store, must-revalidate”,
“expires”: “Sat, 01 Jan 2000 00:00:00 GMT”,
“x-fb-request-id”: “AYPR_QICwDHURVAoV7LLt4N”,
“x-fb-trace-id”: “Hc39ivTVjdG”,
“x-fb-rev”: “1025527266”,
“x-fb-debug”: “PtbyxUqpHOVc3Sgd53qVrP9snQAzQVs5WkOkPvuI1Tb/EsMj6CTSx+q8eSq7Gve1143WYtLC60mapKddmuJsTg==”,
“date”: “Tue, 05 Aug 2025 18:47:23 GMT”,
“x-fb-connection-quality”: “EXCELLENT; q=0.9, rtt=18, rtx=0, c=10, mss=1380, tbw=372, tp=-1, tpl=-1, uplat=87, ullat=0”,
“alt-svc”: “h3=":443"; ma=86400”,
“connection”: “close”,
“content-length”: “114”
},
“body”: {
“status_code”: “ERROR”,
“status”: “Error: Media upload has failed with error code 2207052”,
“id”: “17994706133667734”
}
},
“request”: {
“url”: “https://graph.facebook.com/v22.0/17994706133667734”,
“qs”: {
“fields”: “status_code,status”
},
“headers”: {
“user-agent”: “Make/production”,
“authorization”: "**”
},
“method”: “GET”
}
}
Hope this helps. 