Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a problem working with one remote server. My app makes a request to a server using [NSData initWithContentsOfURL:] method and as a response I get website's url which I open in UIWebView.

The problem is that those requests have different User-Agent and server can't serve me correct because it expects that I send all requests with the same User-Agent. I know how to change User-Agent (e.g Change User Agent in UIWebView (iPhone SDK)) but what I really want it is somehow to get UIWebView's User-Agent and set it to [NSData initWithContentsOfURL:] to avoid problems with server side

share|improve this question

2 Answers

up vote 28 down vote accepted

I just ran into a similar issue and needed to make the user agent sent by an NSURLConnection match the one sent by a UIWebView. My solution was to create a UIWebView and then just use javascript to pull out the user agent.

UIWebView* webView = [[UIWebView alloc] initWithFrame:CGRectZero];
NSString* secretAgent = [webView stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];

share|improve this answer
1  
it works! thanks – Igor Khomenko Oct 15 '12 at 13:20

What about this one http://blog.sallarp.com/iphone-ipad-get-user-agent-for-uiwebview/ ?

share|improve this answer
Interesting. I have solved the problem with an extra request to server but this solution is much more elegant. I'll check if it returns what I want. – Dmytro Aug 9 '10 at 14:03
2  
I have not succeeded to put it to work. User-Agent is always nil – Dmytro Aug 10 '10 at 12:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.