Hello, I am trying to make a basic payment for MercadoPago and return the "500 Internal Error". Here I leave the code that I am using. Thanks.
var mp = new MercadoPago();
String data = "{" +
"\"transaction_amount\": 10," +
"\"token\": \"c2caced385925193f59423f0d630efef14:12 02/10/2017\"," +
"\"description\": \"Title of what you are paying for\"," +
"\"installments\": 1," +
"\"payment_method_id\": \"visa\"," +
"\"payer\": {" +
"\"email\": \"[email protected]\"" +
"}" +
"}";
mp.post("/v1/payments", data);