how to insert cookie, and delete, retrieve cookie in Flutter

preview_player
Показать описание
how to insert cookie, and delete, retrieve cookie in Flutter
Рекомендации по теме
Комментарии
Автор

Do you know of a way to delete cookies on a schedule? We use a website that we are being told, "To increase performance, delete these specific cookies and reload the page". The problem is it works but only works for about an hour and then the website is slow again. It has something to do with what node / sever they use gets overloaded.

f.k.b.
Автор

But this is using dart:html, doesn't that introduce platform limitations?

mikopiko
Автор

In remove all cookie instead of setting its value to empty(" ")
directly remove the whole cookies key and value

// Remove the cookie by setting its value to an empty string and its expiration date to 1970, effectively deleting it.
html.document.cookie = '$key=; expires=Thu, 01 Jan 1970 00:00:00 GMT';
// setCookie(key, '', expires: DateTime.fromMillisecondsSinceEpoch(0), path: path, domain: domain, secure: secure);
return true;

mohammedsohailbadgandi