I am trying to post marvin JS on the site.
There is no problem with the iframe and the function itself, but a problem occurs when using additional functions.
When the current page is executed, the following message appears.
[Error] SecurityError: Blocked a frame with origin "-mysitedomain.appspot.com" from accessing a cross-origin frame. Protocols, domains, and ports must match.
and
Blocked a frame with origin "https://storage.googleapis.com" from accessing a frame with origin "https://-mysitedomain.appspot.com". Protocols, domains, and ports must match.
Is this a CORS related issue?
I additionally added CORS to the bucket but it doesn't solve the problem.
my CORS setting file:
[
{
"origin": ["*"],
"method": ["*"],
"responseHeader": ["*"],
"maxAgeSeconds": 3600
}
]
Any help would be appreciated.