私のアプリでは、次のタイプのコードを使用してユーザーエージェントをいじっています。
// Fake Firefox's user agent during web service's registration
NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:@"Mozilla/5.0 (compatible; Windows; U; Windows NT 6.2; WOW64; en-US; rv:12.0) Gecko/20120403211507 Firefox/12.0", @"UserAgent", nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dictionary];
// Return to standard iOS user agent when web service registration is done
NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:@"Mozilla/5.0 (iPhone; CPU iPhone OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3", @"UserAgent", nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dictionary];
私のアプリの一部では、ユーザーは「アカウントにサインアップ」ページを使用してWebサービスに登録できます。これを見つける唯一の方法は、Webサイトが「アプリをダウンロードしてください」というページを自動的に起動しないようにする方法です。このように、ユーザーエージェント文字列をいじくりまわすことです。でユーザーエージェントを設定しようとしましたNSMutableURLRequest
が、これがまったく機能しませんでした。(はい、「User-Agent」と「User_Agent」の両方を設定してみましたNSMutableURLRequest
。)
これにより、アプリがAppleから拒否される可能性があると聞きました。誰かが確認または拒否したり、コメントを提供したりできますか?ありがとう!