Javascript – How to consent to cookies via Android webview
On my website, the user must accept cookies before proceeding. There is an API for checking consent: (window.consentApi?.consent("tidio-chat") || Promise.resolve()).then(() => { console.log("Consent given, do something...!"); }); This callback is invoked once the user has accepted all cookies. How can…