0
私はASIHttpRequestを使用することを要求しました。このページではどのようにすればいいですか?ASIHttpRequestログイン空の応答
<form method="post" action="Login.jsp">
<fieldset>
<legend>Insert</legend>
<ul>
<li><label for="username">User</label><input maxlength="10" id="user" name="username" value=""></li>
<li><label for="password">Password</label><input maxlength="16" type="password" id="pwd" name="password" value="" ></li>
<li id="errore"> error</li>
<li><input type="submit" id="go" value="enter"></li>
</ul>
</fieldset>
</form>
私はこれ作るています
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:@"url....Login.jsp"]];
[request setRequestMethod:@"POST"];
[request setPostValue:@"user" forKey:@"username"];
[request setPostValue:@"pass" forKey:@"password"];
[request setDelegate:self];
[request startSynchronous];
NSLog(@"Response %d ==> %@", request.responseStatusCode, [request responseString]);
をしかし、私は受け取る: レスポンス0 ==>(null)
また、[request setValidatesSecureCertificate:NO]を使用しました。
どこが間違いですか?また、私に記録されるページを読みたいと思っています。ありがとう!
を私はこれを作るが、私は要求を送信するエラーを受け取る。 – Doom
あなたのURLは間違いありませんか? –
どのasihttpデリゲートメソッドが呼び出されるのですか?完成したか失敗した? – Lefteris