Change User Agent in UIWebView

前端 未结 14 1825
孤城傲影
孤城傲影 2020-11-22 17:03

I have a business need to be able to customize the UserAgent for an embedded UIWebView. (For instance, I\'d like the server to respond differently if, say, a user is using

相关标签:
14条回答
  • 2020-11-22 17:52

    I had this problem too, and tried all methods. I found that only this method works (iOS 5.x): UIWebView iOS5 changing user-agent

    The principle is to set the user agent permanently in the user settings. This works; Webview sends the given header. Just two lines of code:

    NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:@"Mozilla/Whatever version 913.6.beta", @"UserAgent", nil];
    [[NSUserDefaults standardUserDefaults] registerDefaults:dictionary];
    

    Setting User-Agent, or User_Agent in the mutable request, or overriding the setValue in the NSHttpRequest by swizzling, - I tried all that and controlled the results with wireshark, and none of that seems to work, because Webview still uses the user agent value from the user defaults, no matter what you try to set in the NSHttpRequest.

    0 讨论(0)
  • 2020-11-22 17:53

    Try this in the AppDelegate.m

    + (void)initialize 
    
    {
    
        // Set user agent (the only problem is that we can’t modify the User-Agent later in the program)
    
        // iOS 5.1
    
        NSDictionary *dictionnary = [[NSDictionary alloc] initWithObjectsAndKeys:@”Mozilla/5.0 (iPad; CPU OS 5_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B176 Safari/7534.48.3”, @”UserAgent”, nil];
    
    
        [[NSUserDefaults standardUserDefaults] registerDefaults:dictionnary];
    
    }
    
    0 讨论(0)
  • 2020-11-22 17:58

    By pooling the answer by Louis St-Amour and the NSUserDefaults+UnRegisterDefaults category from this question/answer, you can use the following methods to start and stop user-agent spoofing at any time while your app is running:

    #define kUserAgentKey @"UserAgent"
    
    - (void)startSpoofingUserAgent:(NSString *)userAgent {
        [[NSUserDefaults standardUserDefaults] registerDefaults:@{ kUserAgentKey : userAgent }];
    }
    
    - (void)stopSpoofingUserAgent {
        [[NSUserDefaults standardUserDefaults] unregisterDefaultForKey:kUserAgentKey];
    }
    
    0 讨论(0)
  • 2020-11-22 18:00

    Very simple in Swift. Just place the following into your App Delegate.

    UserDefaults.standard.register(defaults: ["UserAgent" : "Custom Agent"])
    

    If you want to append to the existing agent string then:

    let userAgent = UIWebView().stringByEvaluatingJavaScript(from: "navigator.userAgent")! + " Custom Agent"
    UserDefaults.standard.register(defaults: ["UserAgent" : userAgent])
    

    Note: You may will need to uninstall and reinstall the App to avoid appending to the existing agent string.

    0 讨论(0)
  • 2020-11-22 18:00

    To just add a custom content to the current UserAgent value, do the following:

    1 - Get the user agent value from a NEW WEBVIEW

    2 - Append the custom content to it

    3 - Save the new value in a dictionary with the key UserAgent

    4 - Save the dictionary in standardUserDefaults.

    See the exemple below:

    NSString *userAgentP1 = [[[UIWebView alloc] init] stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];
    NSString *userAgentP2 = @"My_custom_value";
    NSString *userAgent = [NSString stringWithFormat:@"%@ %@", userAgentP1, userAgentP2];
    NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:userAgent, @"UserAgent", nil];
    [[NSUserDefaults standardUserDefaults] registerDefaults:dictionary];
    
    0 讨论(0)
  • 2020-11-22 18:02

    This solution seems to have been seen as a pretty clever way to do it

    changing-the-headers-for-uiwebkit-http-requests

    It uses Method Swizzling and you can learn more about it on the CocoaDev page

    Give it a look !

    0 讨论(0)
提交回复
热议问题