Error Domain=com.alamofire.error.serialization.response Code=-1011 "Request failed: bad request (400)

前端 未结 3 1768
春和景丽
春和景丽 2021-01-12 17:54

I am using AFnetworking library to post data on server.

Following is my code to post data on server.

- (void) callLoginAPI:(NSDictionary *)dictProfil         


        
3条回答
  •  Happy的楠姐
    2021-01-12 18:09

    The error says it all: you got a 400 response from the server, meaning that what you sent was either not formatted properly, or the server just couldn't understand it.

提交回复
热议问题