使用ba_request_POSTWithEntity请求以后抓包发现发送的是GET请求
Opened this issue · 0 comments
jimmyyao88 commented
使用ba_request_POSTWithEntity请求以后,用charles抓包发现发送的是GET请求。
代码如下:
BADataEntity *entity = [BADataEntity new];
entity.urlString ="/exmaple/123";
BlockSelf;
[BANetManager ba_request_POSTWithEntity:entity successBlock:^(id response) {
} failureBlock:^(NSError *error) {
} progressBlock:^(int64_t bytesProgress, int64_t totalBytesProgress) {
}];