是否可以将 accountkit 放在 iframe 中?

is possible put accountkit in iframe?

我有一个要求,活动页面将嵌入登陆的注册页面。 像这样

campaign page
______________________
| iframe signup page |
|   ________         |
|   |      |         |
|   |      |         |
|   ________         |
______________________

Accountkit在注册页面,但是打开accountkit时出现错误

Refused to display 'https://www.accountkit.com/v1.1/dialog/sms_login/' in a frame because an ancestor violates the following Content Security Policy directive: "frame-ancestors https://mywebsite.com".

这个要求可以吗,或者您有其他建议吗?

在您的网络服务器响应中添加 header:

Content-Security-Policy: default-src 'self' https://www.accountkit.com

或元标记

<meta http-equiv="Content-Security-Policy" content="default-src 'self' https://www.accountkit.com">

More info