I am trying to get the cookie from an URL using CookieManager.getInstance().getCookie(url)
. What I have noticed is that for Android 10 the cookie contains __Host-nc_sameSiteCookielax=true; __Host-nc_sameSiteCookiestrict=true
however for lower APIs those parameters are missing. Where is the difference coming from?
In my case those parameters are absolutely necessary so as of right now I am adding manually for further requests. Is there a better way to solve this issue?