Im sending (with ASIFormDataRequest) a POST request, with 4 parameters. The server launches a NullPointerException when this request arrives. When I debug the app, I don’t know how to actually see what’s inside the parameters in the request done by the phone. Is there any way to achieve this? Maybe I am missing some option in XCode?
Thank you.
To see the post parameters, you will need to look inside
yourFormRequest.postBody, but please note the data isNSMutableDataso you will have to convert it toNSStringorNSDictionaryLike following