I'm making a payment module with the api of mercadopago, and when configuring the url for the reception of payment notifications on the page of mercadopago, I get the error "The URL entered does not answer an HTTP correct status, you must reply 200 or 201 ".
My application is made in MVC, and the action I want to configure is:
[HttpGet]
public HttpStatusCodeResult MisNotificaciones(string topic, string id)
{
return new HttpStatusCodeResult(200);
}
Some idea of how I should do the method or how I should put the URL in link ?
Right now I'm trying to set link