i have read a lot about cookie and i still can’t understand it right
have two domains
server: server.com
client: client.com
so the website is just deployed and there are many issues, i understand that there isn’t way to share cookie between two domains
when disable Prevent Cross-Site on Safari it is work fine but probably that is not make sense to ask from each client to disable it...
my Question is if i can set the server.com on
server.domain.com and the client on domain.com
is possible to share cookie between server.domain.com(serverSide) to domain.com(clientSide) ?
or just simply: "How to use cookies between server domain to client domain In the right way after hosting ?"
the most reliable solution is that the browser that has the cookie set (for example) from server.com performs a request with the cookie as a parameter to client.com that sets the same cookie on client.com website.
Many times a simple (and hidden) XMLHttpRequest can do the trick.