美文网首页GXiOS
iOS 设置userAgent

iOS 设置userAgent

作者: th先生 | 来源:发表于2021-01-11 15:08 被阅读0次

    首先看一下我的设置:

        NSString *userAgent = [self valueForKey:@"applicationNameForUserAgent"];
        userAgent = [userAgent stringByAppendingString:[NSString stringWithFormat:@"/myapp/%@", CURRENTAPPVERSION]];
       [self setValue:userAgent forKey:@"applicationNameForUserAgent"];
    

    在baseWebview (继承WKWebView)的初始化里添加上面的代码。
    通过applicationNameForUserAgent来获取的userAgent 是不包含
    Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko)的,这一段是默认的。
    打印一下userAgent为Mobile/13E230

    而h5获取到的UA打印出来为完整的:Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13E230/myapp/1.0.0

    网上很多人说这段代码需要添加到if (@available(iOS 12.0, *)){}条件中,要是希望支持iOS12以下系统,还需要

    //在回调里获取userAgent即result
        [_webView evaluateJavaScript:@"navigator.userAgent" completionHandler:^(id _Nullable result, NSError * _Nullable error) {
            NSString *userAgent = result;
            
            if ([userAgent rangeOfString:@"/myapp/"].location != NSNotFound) {
                return ;
            }
            NSString *newUserAgent = [userAgent stringByAppendingString:ua];
            NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:newUserAgent,@"UserAgent", nil];
            [[NSUserDefaults standardUserDefaults] registerDefaults:dictionary];
            [[NSUserDefaults standardUserDefaults] synchronize];
            //不添加以下代码则只是在本地更改UA,网页并未同步更改
            if (@available(iOS 9.0, *)) {
                [_webView setCustomUserAgent:newUserAgent];
            } else {
                [_webView setValue:newUserAgent forKey:@"applicationNameForUserAgent"];
            }
        }]; //加载请求必须
    
    

    通过下面的代码进行WKWebView进行私有属性打印,iOS12以上确实有applicationNameForUserAgent私有属性,iOS12以下,我也找到了这个属性。所以感觉只需要最上面的设置就够了。不过这种调用私有API的方法,可能还不是很可靠。苹果官方哪天不开心禁用了,可咋办。

    unsigned  int count = 0;
        objc_property_t *propertyList = class_copyPropertyList([WKWebView class], &count);
            for (unsigned int i = 0; i < count; i++) {
                const char *propertyName = property_getName(propertyList[i]);
                NSLog(@"propertyName(%d) : %@", i, [NSString stringWithUTF8String:propertyName]);
            }
            
            free(propertyList);
    

    推荐

    通过WKWebViewConfiguration的属性我们看到了applicationNameForUserAgent属性,支持ios9以上

    那么通过以下代码设置再看

    WKWebViewConfiguration *webViewConfig = [[WKWebViewConfiguration alloc] init];
    webViewConfig.allowsInlineMediaPlayback = YES;
    NSString *userAgent = webViewConfig.applicationNameForUserAgent;
    userAgent = [userAgent stringByAppendingString:@"myapp/1.0.0"];
    webViewConfig.applicationNameForUserAgent = userAgent;
    self = [super initWithFrame:frame configuration:webViewConfig];
    

    当我们打印userAgent时,为Mobile/13E230

    而h5获取到的UA打印出来为完整的:Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13E230/myapp/1.0.0
    这里就厉害了啊,一下就支持ios9了,UA也是完整的


    通过上面的方法,我们又看到WKWebView中有一个customUserAgent属性
    那么我们试一下:

       NSString *userAgent = self.customUserAgent;
       userAgent = [userAgent stringByAppendingString:@"/myapp/1.0.0"];
       self.customUserAgent = userAgent;
    

    当我们打印userAgent时,为空

    而h5获取到的UA打印出来为:/myapp/1.0.0
    如果你的项目与h5约定对自己添加的UA进行判断,那么这么做也是没有问题的


    也可以设置全局的UA
    在didFinishLaunchingWithOptions中添加

    UIWebView * webview = [[UIWebView alloc]init];
    NSString *oldAgent = [webview stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];
    NSString * midStr = [NSString stringWithFormat:@"/myapp/%@",appVersion];
    NSString * newAgent = [oldAgent stringByAppendingString:midStr];
    NSDictionary *dictionnary = [[NSDictionary alloc]initWithObjectsAndKeys:newAgent,@"UserAgent",nil];
    [[NSUserDefaults standardUserDefaults] registerDefaults:dictionnary];
    

    打印出来的oldAgent为完整的:Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13E230

    h5获得到的UA也是完整的
    这里跟你在项目中用UIWebView或者WKWebView没关系


    如果你选择下面这么做

    NSString *userAgent = [self valueForKey:@"applicationNameForUserAgent"];
    NSString * midStr = [NSString stringWithFormat:@"/myapp/%@",appVersion];
    NSString * newAgent = [userAgent stringByAppendingString:midStr];
    NSDictionary *dictionnary = [[NSDictionary alloc]initWithObjectsAndKeys:newAgent,@"UserAgent",nil];
    [[NSUserDefaults standardUserDefaults] registerDefaults:dictionnary];
    

    打印出来的就只有后面的Mobile/13E230
    h5获取到的也就只有后半段,没有默认设备标识的UA了。

    具体的做法看你的项目的需求,可以选择你需要的组合来设置。

    相关文章

      网友评论

        本文标题:iOS 设置userAgent

        本文链接:https://www.haomeiwen.com/subject/ouldaktx.html