新增個人想法:
1、盡量使用postman
2、青花瓷
why
根本找不到
比如下面接口狀態200
粘貼圖片.png
以上新增
以下為原內容
請求接口401 錯誤
Paste_Image.png
Paste_Image.png
Paste_Image.png
#import "AFURLResponseSerialization.h"
NSData * data = error.userInfo[AFNetworkingOperationFailingURLResponseDataErrorKey];
id body = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
NSDictionary *bodyDic = (NSDictionary*)body;
NSMutableDictionary *errDic = [[NSMutableDictionary alloc] init];
if ([bodyDic stringForKey:@"error"]) {
errDic[@"error"] = [bodyDic stringForKey:@"error"];
}