Error Domain=NSCocoaErrorDomain Code=3840 "The operation couldn’t be completed using AFNetworking

后端 未结 3 1686
遇见更好的自我
遇见更好的自我 2020-12-15 05:34

I am using AFNetworking library to post data on server using POST method.

Following is my code

- (void) callLoginAPI:(NSDictionary *)dictProfile{
            


        
3条回答
  •  [愿得一人]
    2020-12-15 06:06

    The problem comes from response parsing. You are trying to de-serialize a JSON reponse (which MUST be contained in either a NSArray or NSDictionary) however your response is none of the above (Most likely a simple string).

    Also, try to set the "allow fragments" to the response serializer.

    AFJSONResponseSerializer *responseSerializer = [AFJSONResponseSerializer serializerWithReadingOptions:NSJSONReadingAllowFragments];
    

提交回复
热议问题