0
私はApiに接続しようとしていますが、x-www-form-urlencodedを使用しています...このコードを使用しています.Plz正しい方法を教えてください。x-www-form-urlencoded objective c
[manager.requestSerializer setValue:@"application/x-www-form-urlencoded; charset=UTF-8" forHTTPHeaderField:@"Content-Type"];
これはあなたのエラーが解決しない場合:私はあなたがあなたのバックエンドとの通信に 'x-www-form-urlencodedで' のHTTPヘッダを設定しようとするべきだと思い
AFSecurityPolicy *securityPolicy = [AFSecurityPolicy policyWithPinningMode:AFSSLPinningModeNone];
securityPolicy.allowInvalidCertificates = YES;
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
manager.responseSerializer.acceptableContentTypes = nil;
manager.securityPolicy = securityPolicy;
[manager POST:[NSString stringWithFormat:@"@"%@%@phone=%@&password=%@",BASE_URL,API_LOGIN,phone,password]
parameters:nil
success:^(AFHTTPRequestOperation *operation, id responseObject) {
successBlock(responseObject);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Server Error : %@", operation.responseString);
errorBlock(error);
}];
}
質問は何ですか? – shallowThought