I have a web instance with some rules for blocking suspect requests and it's blocking all requests from my xamarin project. Server returns status code Forbidden and when I get the details the cause is "NoUserAgent_HEADER".
I had same problem with WebClient requests and solve that by adding webclient.Headers.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
but how to solve that in requests coming from xaml?
Update
For example:
<Image Source="https...." />
this is being blocked!