I get this error
A cookie associated with a cross-site resource at http://vimeo.com/ was set without the `SameSite` attribute.
A future release of Chrome will only deliver cookies with cross-site requests if they are set with `SameSite=None`
and `Secure`. You can review cookies in developer tools under Application>Storage>Cookies and see more details at
https://www.chromestatus.com/feature/5088147346030592 and https://www.chromestatus.com/feature/5633521622188032.
So I have looked into Header set Set-Cookie HttpOnly;Secure;SameSite=Strict
I have also looked into setcookie('vuid', 'pl793637742.1596158948', time() + 7700, '/', '.vimeo.com; SameSite=none;');
but am still getting the warning. When I go to Chrome Dev Tool > Application > Cookies, I see that player.vimeo.com has a cookie Name: vuid
+ Value: pl793637742.1596158948
+ Domain: .vimeo.com
... and under SameSite
there is nothing/no check mark.
Any help to debug or fix this vimeo, SameSite is appreciated. Thank you!