如何像 AFNetworking 一样启用 ssl 连接:
self.manager = [[AFHTTPRequestOperationManager alloc] initWithBaseURL:[NSURL URLWithString:kHostName]];
self.manager.securityPolicy.allowInvalidCertificates = YES;
在我的情况下,我既没有用户名也没有密码,post request
就像这样
https://domain/request
和参数:
email=123@abc.com
更新
自从我将参数编码形式更改.JSON
为.URL
.