RESTサービス(WCF)にAFNetworkingを使用しています。コードは次のとおりです。
NSDictionary *userName = [NSDictionary dictionaryWithObject:@"user" forKey:@"UserNameOrEmail"];
NSDictionary *pass = [NSDictionary dictionaryWithObject:@"123" forKey:@"Password"];
NSArray *credentials = [NSArray arrayWithObjects:userName,pass,nil];
NSDictionary *params = [NSDictionary dictionaryWithObject:credentials forKey:@"request"];
AFHTTPClient *client = [[AFHTTPClient alloc] initWithBaseURL:
[NSURL URLWithString:@"http://server"]];
[client postPath:@"/ProfileWebService.svc/login" parameters:params success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSString *text = [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];
NSLog(@"Response: %@", text);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"%@", [error localizedDescription]);
}];
しかし、400HTTPエラーが発生します。
HTMLとAJAXを使用すると、次のようになります。
$(document).ready(function () {
$("#login_call").click(function () {
$.ajax({
type: 'POST',
url: 'http://server/ProfileWebService.svc/login',
contentType : 'application/json',
dataType: 'json',
data: JSON.stringify({request: {UserNameOrEmail: $('#login_username').val(), Password: $('#login_password').val()}}),
success: function (data) {
$('#login_result').val('Code: ' + data.LoginResult.Code + '\nFault String: ' + data.LoginResult.FaultString);
}
});
});
});
正常に動作します。
パラメータの何が問題になっていますか。