49

Xamarin.Forms: Clear cookies in WebViews

 2 years ago
source link: https://www.banditoth.hu/2021/11/10/xamarin-forms-clear-cookies-in-webviews/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Xamarin.Forms: Clear cookies in WebViews

November 10, 2021 by banditoth

If you are authenticating through WebView, and acquire a token on successful login, you may have experienced that on re-login scenarios the authentication details is not requested again, because the browser is storing the previously logged in user. You may have to clear the browser’s cookies section to get rid of the useless previous user’s details.

Go ahead and create a dependency service, because we will write some platform specific code! 🙂

Xamarin.Forms code

Define an interface like this

public interface IDeviceSpecificService
{
void ClearCookies();
}

And use the code like this

DependencyService.Get<IDeviceSpecificService>().ClearCookies();

Xamarin.Android implementation

[assembly: Dependency(typeof(DeviceSpecificService))]
namespace AnAwesomeCompany.AGreatProject.Presentation.Droid.Implementations
{
public class DeviceSpecificService : IDeviceSpecificService
{
public void ClearCookies()
{
Android.Webkit.CookieManager.Instance.RemoveAllCookie();
}
}
}

Xamarin.IOS implementation

[assembly: Dependency(typeof(DeviceSpecificService))]
namespace AnAwesomeCompany.AGreatProject.Presentation.IOS.Implementations
{
public class DeviceSpecificService : IDeviceSpecificService
{
public void ClearCookies()
{
NSHttpCookieStorage CookieStorage = NSHttpCookieStorage.SharedStorage;
foreach (var cookie in CookieStorage.Cookies)
CookieStorage.DeleteCookie(cookie);
}
}
}

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK