美文网首页
修改User-Agent的方法

修改User-Agent的方法

作者: FingerStyle | 来源:发表于2018-10-18 23:10 被阅读171次

- (void)modifyUserAgent {

    //修改UA为统一UA

    NSString *oldAgent = [self stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];

    NSLog(@"old agent :%@", oldAgent);

    //add my info to the new agent

    NSString*newAgent = [QMParamsHelper commonUserAgent:oldAgent];

    NSLog(@"new agent :%@", newAgent);

    MEMORY_VALUE.userAgent= newAgent;

    //regist the new agent

    NSDictionary *dictionnary = [[NSDictionary alloc] initWithObjectsAndKeys:newAgent, @"UserAgent", nil];

    [[NSUserDefaults standardUserDefaults] registerDefaults:dictionnary];

}

相关文章

网友评论

      本文标题:修改User-Agent的方法

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