Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

266
Views
¿La política de CORS ha bloqueado el origen del error 'null'?

Estoy llamando a la puerta de enlace API de AWS usando el siguiente código.

 <!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#btn").click(function(){ var finalJson = { "entityType": "abc", "entityId": "123" }; $.ajax({ type : "POST", contentType : "application/json", xApiKey : "api-key" url : "api-gateway-url", data : JSON.stringify(finalJson), dataType : 'json', timeout : 100000, success : function(data){ alert('Congrats! You got the response'); console.log(data); }, error : function(data){ alert('Error'); console.log(data); } }); }); }); </script> </head> <body> <h2>API Gateway call</h2> <button type="button" id="btn">Request data</button> <p id="demo"></p> </body> </html>

API Gateway tiene un método POST y está vinculado con la función Lambda. Ya he habilitado CORS en API gatewaye. Después de hacer clic en el botón Solicitar datos, mostrando el siguiente error.

 Access to XMLHttpRequest at 'API Gateway URL' from origin 'null' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.

Por favor ayuda, gracias :)

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Creo que esta pregunta está relacionada con esto , no debido a API Gateway. Si configuró la configuración de CORS con * , debería poder llamar directamente desde la interfaz.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!