'Azure Function App throwing 403 Error when sending zip file
I am using postman to make call to my Azure Function App. I am making a call which sends over a zip file and get a 403 error but when I send a JSON file it gets 200 okay status. Also when testing locally I am able to send the zip file. Is there a setting or configuration in Azure Function App that doesn't allow zip files?
Solution 1:[1]
403 Forbidden Error on Azure Functions
Normally, this error would occur when we don't add the client IP in the Ip restrictions.
Navigate to Azure Function App > Networking > Add your IP Address to your Azure Function App website.

Please check this similar SO Threads helps to solve the 403 Forbidden issues in Azure Functions.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | HariKrishnaRajoli-MT |
