I’ve been reading a bit that I need to create a page for cross-authentication since Safari does not allow third-party cookies, given that I think there are 2 solutions:
- Custom domains: this means having the payment service
- Cross authentication page.
The problem I have is that I do not know how to integrate the ‘cross authentication page’ solution within my angular application, since I am using auth0-lock instead of auth0-js.
In the beginning I was receiving this error:
After that, what I have tried is to leave the following in the index.html of my application:
<script src="https://cdn.auth0.com/js/auth0/9.0.0/auth0.min.js"></script>
<script type="text/javascript">
var auth0 = new auth0.WebAuth({
domain: 'xxxxxxx.auth0.com',
clientID: 'op15hx1cq2gfOO9jNku0DhOehVWsrbbx'
});
auth0.crossOriginVerification();
Obtaining the following message in the dashboard logs:
I would appreciate if you could help me.
Thanks