Discussions

Ask a Question
Back to All

Cross Origin Issue with CTI

I have integrated Dialpad CTI in my hosted react webapp. I am able to make calls alright. Now i wrote a script to initiate calls using the contentWindow.postmessage() following the api docs. but i get Uncaught DOMException: Failed to read a named property 'globals' from 'Window': Blocked a frame with origin "https://dialpad.com" from accessing a cross-origin frame.

How do I resolve this?

Admin

Hi Timothy,

This sounds like a CORS issue. Please ensure you're passing dialpad.com as the origin when sending the postMessage, and note that you won't be able to access anything within the window DOM. From your error message it's also not clear what the "globals" property is - AFAIK this isn't a standard property on the window object.

Can you share a code snippet to help us assist further?

Thank you!

I contacted the dev team and they told me to ignore the message. I asked they add the localhost port number to the origin i provided and it works now. Thanks for the reply.

Unrelated to the above question.How do i get the call id when i use postmessage on the cti?

ο»Ώ