Reputation: 5912
In our application we have some elements that work with ajax. We offer users to embed parts of the app in an iframe.
Everything work fine in Chrome and Mozilla. In Safari we get 422 error, and the server log looks like this:
2015-07-15T08:26:06.818885+00:00 app[web.1]: Completed 422 Unprocessable Entity in 4ms
2015-07-15T08:26:06.815411+00:00 app[web.1]: Can't verify CSRF token authenticity
2015-07-15T08:26:06.823389+00:00 app[web.1]: ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken):
We figured out that if we access directly the iframe url AND THEN to the page which contains the iframe it works fine, which might indicates that it has to do with cookies.
I tried this solution, but we still have this problem.
Upvotes: 2
Views: 2469
Reputation: 1001
Safari does not (by default) allow cookies to be set in iFrames unless the user has visited the site already. Imagine this code:
# a.com
<iframe src="b.com/iframe">
If you visit b.com
directly (any page) and it sets a cookie, then Safari will send that cookie when you visit a.com
and the iFrame to b.com
is loaded.
However, if you visit a.com
without first visiting b.com
, then Safari will ignore any cookie that b.com/iframe
tries to set.
The solution is described here (if the link doesn't work for you, here is version saved by web archive) in the section called "A solution for Safari".
Upvotes: 1
Reputation: 5912
Finally I figured out that Safari does not allow keeping cookies in iframe.
It means that if you need to use cookies, you need to do something.
The solution I found is this:
session[:safari_cookie_fixed]
exist. If not, render a code that will communicate using postMessage
with the parent window and let him know that we need a redirection.postMessage
to the iframe when the iframe is loaded. The listener, which was rendered in case the cookie does not exist, send a signal to the parent to perform redirect, and the parent does a redirection to /set-cookie
page in the iframe domain, adding its current url as a query-string parameter.set_cookie
action save a cookie safari_cookie_fixed
and redirect back to the parent page (which its url is available in the query-string)Of-course this solution requires adding some js code in the parent page, but when you give your user the iframe html code you can include the js as well.
Upvotes: 0