How to get all cookies from CookieManager android ?

后端 未结 2 608
遇见更好的自我
遇见更好的自我 2021-02-13 00:20

For Android CookieManager class there is a method -- getCookie(String url).
For this we need to know correct url.
Is there a way to get all co

2条回答
  •  悲&欢浪女
    2021-02-13 01:00

    You can use reflection to see the cookie map. It's called mCookieMap in 4.0.3 (and probably in earlier releases as well). The type is Map>.

    This isn't a great way of doing it because you'll risk breaking on different devices or OS versions if they don't use mCookieMap, but CookieManager doesn't offer a public way of knowing which URLs it's visited.

提交回复
热议问题