Get images that are protected by Access Token in an api from a Maui dotnet app
Previously for Xamarin FFImageLoading was used
ImageService.Instance.Initialize(new Configuration
{
HttpClient = new HttpClient(new AuthenticatedHttpImageClientHandler
(_result.AccessToken))
});
I need alternative for dotnet Maui
I managed to make it work in MAUI this way.
In your App.Xaml.cs get the service provider
Then you can get the configuration instance and replace HttpClient. You can call this in your custom onstart method
This is the class that inserts the token