webview_cookie_manager

Creator: coderz1093

Last updated:

Add to Cart

Description:

webview cookie manager

Webview Cookie Manager #

A flutter library to manager your web cookies for Android (API level 9+) and iOS (11+).
The cookies stores and retrieves using the httpCookieStore for iOS and CookieManager for Android.
Get started iOS #
Set minimum version for iOS to 11.0
Usage #
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);
}
copied to clipboard
Set a cookie #
await cookieManager.setCookies([
Cookie('cookieName', 'cookieValue')
..domain = 'youtube.com'
..expires = DateTime.now().add(Duration(days: 10))
..httpOnly = false
]);
copied to clipboard
Check is any cookie available #
await cookieManager.hasCookies();
copied to clipboard
Remove a cookie #
await cookieManager.removeCookie();
copied to clipboard
Clear cookies #
await cookieManager.clearCookies();
copied to clipboard
Domain attribute #
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';
copied to clipboard
Secure attribute #
If you see the error Strict Secure Cookie policy does not allow setting a secure cookie for http://your-domain.net/ for apps targeting >= R. Please either use the 'https:' scheme for this URL or omit the 'Secure' directive in the cookie value. Then you need to set the origin while setting the cookie, in that case setting the domain is not required.
final cookies = <Cookie>[];
// Add your cookie with secure flag to the array
cookieManager.setCookies(cookies, origin: 'https://your-domain.net')
copied to clipboard
Troubleshooting on iOS #

Set minimum target iOS version to 11 (see also #17)
If you are using Objective C, check that PodFile have a flag use_frameworks (see also #4)

target 'Runner' do
use_frameworks!
use_modular_headers!
..........
end
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.