Can Anybody Help me to find out the solution? I need to register data using POST Method send a parameters from Body.I am using this Code
public static async Task<HttpResponseMessage> Signup(Register register)
{
HttpResponseMessage result=null;
try
{
string url = Constant.url + "api/services/app/Account/Register";
HttpClient _client = new HttpClient();
var content = JsonConvert.SerializeObject(register);
result = await _client.PostAsync(url, new StringContent(content, Encoding.UTF32, "application/json"));
}
catch(Exception ex)
{
}
return result;
}
But I am getting 500 Internal Server Error.Please Help me.
Try this, It will work