Chrome CookieManager Custom Tabs

I have an application that uses cookies to let authcode inturn get a token for an OAuth stream. I looked at the Android developer site and it says CookieManager is used with instances of WebView. Does this mean that Chrome custom tabs cannot use CookieManager?

Thanks in advance.

James

+5
source share
1 answer

That's right, Chrome's custom tabs use Chrome's cookie storage, and it’s currently not possible to read or write cookies from the client application.

+7
source

Source: https://habr.com/ru/post/1247470/


All Articles