Afnetworking send and receive string times 3840 error resolution

Source: Internet
Author: User

Afnetworking Framework default request type and response type are in JSON format, in special cases, when we use the string form, we will report 3840 error, how to solve it?

    1. To set up the request manager:

Because the data passed in and received is not JSON type, it is set to afhttprequestserializer and Afhttpresponseserializermgr.requestserializer = [ Afhttprequestserializer serializer];//Request Mgr.responseserializer = [Afhttpresponseserializer serializer];//response

2. convert Responseobject to a string in success

transcoding nsstring *string = [[NSString alloc] Initwithdata:responseobject encoding:nsutf8stringencoding];


Overall method:

 1. Get Request Manager     afhttprequestoperationmanager *mgr = [ afhttprequestoperationmanager manager];        //  Because the data passed in and received back is not JSON type, it is set to Afhttprequestserializer and afhttpresponseserializer     here. mgr.requestserializer = [afhttprequestserializer serializer];//  Request      mgr.responseserializer = [afhttpresponseserializer serializer];//  Response          // 2. Send GET Request     [mgr get:url parameters: params     success:^ (afhttprequestoperation *operation, id  Responseobject)  {        if  (Success)  {             //  transcoding              nsstring *string =&nbsP [[nsstring alloc] initwithdata:responseobject encoding:nsutf8stringencoding];             nslog (@ "%@", String)          }    } failure:^ (Afhttprequestoperation *operation, nserror  *error)  {        if  (failure)  {             failure (Error);         }    }];



Afnetworking send and receive string times 3840 error resolution

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.