如何在 Xamarin.Forms 的 webview 中设置用户代理

How can I set the User-Agent in webview of Xamarin.Forms

我的程序中使用的其中一个页面需要 UA 包含字符串“weishao”,我尝试使用下面的 javascript 来更改 UA 但它不起作用。

var customUserAgent = 'Mozilla/5.0 (Linux; Android 10; EBG-AN00 Build/HUAWEIEBG-AN00; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36 weishao(3.2.2.74616)';
            Object.defineProperty(navigator, 'userAgent', {
              value: customUserAgent,
              writable: false
            });

该页面的检测器是:

function is_weixin() {
    var href = window.location.href;
    if (href.indexOf("errorPage") != -1){
        return true;
    }
    var ua = navigator.userAgent.toLowerCase();
    var isWeixin = ua.indexOf('micromessenger') != -1;
    var weishao = ua.indexOf('weishao') != -1;
    if (isWeixin){
        return true;
    }else if( weishao) {
        return true;
    }else if(dd.env.platform != "notInDingTalk") {
        return true;
    }else{
        alert("Not allowed!");
        var openid = $("#openid").val();
        if (dkywcommon.isEmpty(openid)) {
            openid = "";
        }
        window.location.href = "/errorPage?openid="+openid;
        return true;
    }
}

xamarin 目前不支持在 webview 上自定义 user-agent,但如果您只是在寻找 xamarin.android 的解决方法,您可以参考下面的代码。

[assembly: ExportRenderer(typeof(WebView), typeof(CustomWebViewRenderer))]
namespace App2.Droid
{
    public class CustomWebViewRenderer : WebViewRenderer
    {
        private readonly Context _context;

        public CustomWebViewRenderer(Context context) : base(context)
        {
            _context = context;
        }

        protected override void OnElementChanged(ElementChangedEventArgs<WebView> e)
        {
            base.OnElementChanged(e);

            if (e.NewElement != null)
            {
                Control.SetWebViewClient(GetWebViewClient());
                Control.Settings.UserAgentString = "Custom user agent!";
            }
        }
    }
}

参考

https://github.com/xamarin/Xamarin.Forms/issues/8432 .