I have a webapi controller and following is a post method.
public HttpResponseMessage Register(string email, string password)
{
}
How do I test from the browser?
When I test it from the browser with the following , it is not hitting the controller.
http://localhost:50435/api/SignUp/[email protected]&password=sini@1234
It is giving me the below error.
Can't bind multiple parameters ('id' and 'password') to the request's content.
Can you please help me???
See Question&Answers more detail:os