I’m making a multipart request to server using ASIFormDataRequest, and I want to review the post body myself before the request is actually made. Is there any way I can print it to console or something like that?
I’m making a multipart request to server using ASIFormDataRequest, and I want to review
Share
Turned out that I just needed to
After that, the library logs all post body to console (except for binary data, which is truncated).