webview_cookie_manager 2.0.5 copy "webview_cookie_manager: ^2.0.5" to clipboard
webview_cookie_manager: ^2.0.5 copied to clipboard

PlatformAndroidiOS
outdated

Have you been turned into a cookie management problem? This package can help. It has all of the cookie management functionality you have been looking for.

Webview Cookie Manager #

pub package

A flutter library to manager your web cookies for Android(API level 9) and iOS(11+).

Get started iOS #

Set minimum version for iOS to 11.0

How to use #

The WebCookieManager can be used directly or together with webview_flutter.

Get cookies:

final cookieManager = WebviewCookieManager();

final gotCookies = await cookieManager.getCookies('https://youtube.com');
for (var item in gotCookies) {
  print(item);
}

Set cookie

await cookieManager.setCookies([
             Cookie('cookieName', 'cookieValue')
               ..domain = 'youtube.com'
               ..expires = DateTime.now().add(Duration(days: 10))
               ..httpOnly = false
           ]);

Check is any cookie available

await cookieManager.hasCookies();

Remove cookie

await cookieManager.removeCookie();

Clear cookies

await cookieManager.clearCookies();

IMPORTANT NOTE: Domain attribute is not required according to RFC, but it is important to remember that empty domain causes undefined behavior. So it is highly reccommended to specify it this this way:

final cookie = Cookie('cookieName', 'cookieValue')..domain = 'youtube.com';

For more examples check example folder.

Troubleshooting #

  1. Set minimum target iOS version to 11(why)
  2. If you are using Objective C, check that PodFile have a flag use_frameworks (why you need to do it)
target 'Runner' do
 use_frameworks!
 use_modular_headers!
 ..........
end

How it works #

The cookies stores and retrieves using the httpCookieStore for iOS and CookieManager for Android.

74
likes
140
pub points
97%
popularity

Publisher

verified publishermobilepeople.dev

Have you been turned into a cookie management problem? This package can help. It has all of the cookie management functionality you have been looking for.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on webview_cookie_manager