我正在尝试为登录屏幕做一个简单的帖子。我发布了一个电子邮件地址和密码。这给了我一个带有状态码的 JSON。如果此代码为 200,则它还包含一个人对象。如果它是其他东西,它包含一个错误对象。
我有这个发布代码。
RKObjectManager *manager = [RKObjectManager managerWithBaseURL:[NSURL URLWithString:@"http://******.com.be/nl/webservice/company-user/login/apikey/key**"]];
NSDictionary *dictionary = @{ @"email": _txtLogin.text, @"pwd": _txtPass.text};
NSMutableURLRequest *request = [manager requestWithObject:nil method:RKRequestMethodPOST path:nil parameters:dictionary];
RKObjectRequestOperation *operation = [manager objectRequestOperationWithRequest:request success:^(RKObjectRequestOperation *operation, RKMappingResult *result) {
NSLog(@"Loading mapping result: %@", result);
}
failure:nil];
[operation start];
但是此代码导致以下错误。
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: route'
*** First throw call stack:
有人可以帮助我吗?我是restkit的新手。
亲切的问候