I'm trying to make web requests programmatically in ASP.NET, using the POST method. I'd like to send POST parameters with the web request as well. Something like this:
LoginData obj = new LoginData(); obj.OSVersion = deviceInformation.OperatingSystem; obj.DeviceModel = deviceInformation.FriendlyName; string URI = "https://XXXXXXXXX.azure-mobile.net/user/logsuserin"; HttpWebRequest GETRequest = (HttpWebRequest)HttpWebRequest.Create(new Uri(URI, UriKind.RelativeOrAbsolute)); GETRequest.Method = "POST"; GETRequest.ContentType = "application/x-www-form-urlencoded"; GETRequest.Headers["applicationKey"] = "UFakeKkrayuAeVnoVAcjY54545455544"; //GETRequest.Parameters.add(obj); Obviously, the commented line does not work. How do I achieve this?
How to get a response by sending my obj as params?
Thanks in advance, Hemanth.