You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a requirement to develop the cloud function to perform CRUD operations on file attachments into Object Storage. But I noticed the 6MB limitation of attachment content while uploading via Gateway.
Ref: https://docs.oracle.com/en-us/iaas/Content/APIGateway/Reference/apigatewaylimits.htm
i.e, client request -> API Gateway -> attachment function -> object storage
How to overcome this issue?
Since sometimes I need to upload large files and hence I found the multipart support and it works well from the cloud function here, but not sure how to receive/interpret the multipart/form-data body request in the cloud function.
Also, I referred to the sample codes and didn't get anywhere on how to receive the body content in the form of a multipart (in the handler class) while sending a request through API Gateway. Is there any specific example available for this use case?
The text was updated successfully, but these errors were encountered:
manikandan-janarthanan
changed the title
How to overcome the limitation of 6MB file attachment while uploading(through API Gateway) to object storage?
Limitation of 6MB file attachment while uploading(through API Gateway) to object storage?
Mar 28, 2023
manikandan-janarthanan
changed the title
Limitation of 6MB file attachment while uploading(through API Gateway) to object storage?
Limitation of 6MB file attachment while uploading attachment (through API Gateway) to object storage?
Mar 28, 2023
manikandan-janarthanan
changed the title
Limitation of 6MB file attachment while uploading attachment (through API Gateway) to object storage?
Limitation of 6MB file attachment while uploading (through API Gateway) to object storage?
Mar 28, 2023
I have a requirement to develop the cloud function to perform CRUD operations on file attachments into Object Storage. But I noticed the 6MB limitation of attachment content while uploading via Gateway.
Ref: https://docs.oracle.com/en-us/iaas/Content/APIGateway/Reference/apigatewaylimits.htm
i.e, client request -> API Gateway -> attachment function -> object storage
How to overcome this issue?
Since sometimes I need to upload large files and hence I found the multipart support and it works well from the cloud function here, but not sure how to receive/interpret the multipart/form-data body request in the cloud function.
Also, I referred to the sample codes and didn't get anywhere on how to receive the body content in the form of a multipart (in the handler class) while sending a request through API Gateway. Is there any specific example available for this use case?
The text was updated successfully, but these errors were encountered: