Market Payment cancellation TLS 1.0 and I do not know how to fix it

0

They sent me a mail warning me that they were going to cancel the TLS 1.0 and that I would check if I use it. Go to link but I can understand where I owe fix if I'm using this.

I am using the MP API in PHP and the API version is 0.1.9, now I am going to update it by 0.5.3. But still I do not know if I'm covered with the change they're going to make.

Someone happened to him esoto?

    
asked by Sebastian Felo 08.06.2018 в 20:35
source

1 answer

0

From what I understand here:

  

Consequently, Mercado Pago will require that your connections to the   domains link and    link be through the protocol of   TLS encryption 1.1 or higher as of June 30, 2018.

the change only affects you if you have a payment form integrated in the site. Payment buttons and redirections would have no problems.

To confirm that you will not have problems:

  • Use https on your site

  • Confirm that the connection uses the TLS 1.1 or 1.2 protocol. From chrome, f12 to open the devtools console and in the security tab shows you that information: On my server I support TLS 1, 1.1 and 1.2

In case the connection is TLS 1.0 you should modify the configuration of your server (depending on whether it is nginx or apache will be different) to support TLS 1.1 and 1.2

Nginx: link (sorry for the self-promotion, I already did it at the time and documented it there)

Apache: link

UPDATE: Joel is right, we also have to validate that the TLS version used by the app that communicates with MercadoPago is 1.1 or 1.2.

    
answered by 13.06.2018 / 18:47
source