whats the simple way to set a cookie for a different domain ?
this is how i set the cookie :
CookieOptions cookieOptions = new CookieOptions()
        {
            Expires = dateTimeOffset
            ,
            Domain = domain
            ,
            SameSite = SameSiteMode.None
            ,
            HttpOnly = false
            ,
            Path = "/"
        };
        httpContextAccessor.HttpContext.Response.Cookies.Append(key, value, cookieOptions);
I thought SameSite = SameSiteMode.None will do the job
iam guessing its not
