AFNetworking を使用して URL に投稿しようとしていますが、何をしてもエラーが発生し続けます。
Error Code: -1011 - Expected status code in (200-299), got 404
私のコードは次のとおりです。
NSString *baseurl = @"http://mysiteurl";
NSString *path = @"/user/register/";
AFHTTPClient *client = [[AFHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:baseurl]];
[client registerHTTPOperationClass:[AFJSONRequestOperation class]];
//[client setAuthorizationHeaderWithUsername:@"myusername" password:@"mypassword"];
[client postPath:path parameters:[NSDictionary dictionaryWithObjectsAndKeys:_userName,@"user", _email, @"email",_password,@"password", nil] success:^(AFHTTPRequestOperation *operation, id JSON) {
//NSLog(@"sjson: %@", [JSON valueForKeyPath:@"entries"]);
NSLog(@"sjson: %@", JSON);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Error Code: %i - %@",[error code], [error localizedDescription]);
}];
直接アクセスするとhttp://mysiteurl/user/register/
、JSON が表示されます。
私は何を間違っていますか?