ユーザー名とパスワードを Web サイトに送信しようとしていますが、これは通常フォームから送信されます。ただし、サーバーはログインページにリダイレクトしています。これは通常、ユーザー名とパスワードが間違っている場合に発生します。ユーザー名は電子メール アドレスの形式で、パスワードは文字列です。
値が正しく処理されていることを確認するために開発者が不在であるため、現在、Web サイトにアクセスできます。以下で作成したコードに明らかなエラーが見られる人はいますか?
プライバシー上の理由から、サンプル コードから URL を削除したことに注意してください。
// Validate login
-(bool)validateLogin{
// Initialize URL to be fetched
NSURL *url = [NSURL URLWithString:@"removedurl"];
NSString *post = @"username=example1%40example.com&password=example2";
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];
// Initalize a request from a URL
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[url standardizedURL]];
//set url
[request setURL:url];
//set http method
[request setHTTPMethod:@"POST"];
//set request length
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
//set request content type we MUST set this value.
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
//set post data of request
[request setHTTPBody:postData];
NSLog(@"%@", [request allHTTPHeaderFields]);
//initialize a connection from request
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
_connection = connection;
//start the connection
[connection start];
return YES;
}