Skip to main content

Hello, are there any known issues with network requests to API Gateway, my setup is to allow all origins, and i can see the request being made in CloudWatch logs but I am not seeing the OPTIONS which needs to correspond with the request and in return I am getting a CORS error within my plugin.


this works within my terminal, but does not in Figma Plugin curl -X GET -H "Origin: null" https://mydomain/path

The issue here was the fact API Gateway HTTP API does not accept origin null requests, you need to use API Gateway V1 Rest API.


Reply