Simple Https POST - how to?
I was hoping someone could help me with figuring out how to POST to a https site? I have bounced around SO for an hour now without finding a s开发者_Go百科uitable answer.
I need to do this.
POST to https://somesiteontheweb.com/postform.aspx
The data I need to post is a simple pipe delimited string: username|password|variable|anotherVariable
Response will be a string: loggedIN|information
Does anyone have some simple sample code? Thanks!
ASIHTTPRequest is know for being simple and efficient. Do you use it ?
For your specific problem, you should find what you need in another question on StackOverflow
Sending a form POST with ASIFormDataRequest
精彩评论