mercadolibre / php-sdk

MercadoLibre's PHP SDK
185 stars 266 forks source link

API Refresh access token no funciona #39

Open juancresc opened 8 years ago

juancresc commented 8 years ago

He obtenido con éxito refresh_token, pero cuando accedo a renovarlo, me tira un error 404, esta es la URL a la que accedo, con los correspondientes parámetros

https://api.mercadolibre.com/oauth/token?grant_type=refresh_token&client_id=[]&client_secret=[]&refresh_token=[]

fergara commented 3 years ago

5 years in and still not a word from MercadoLibre dev team? Aquí está la documentación actual: https://developers.mercadolivre.com.br/pt_br/autenticacao-e-autorizacao#Refresh-token.

fergara commented 3 years ago

Hi. I found the solution. You should do a POST.

curl -X POST \ -H 'accept: application/json' \ -H 'content-type: application/x-www-form-urlencoded' \ 'https://api.mercadolibre.com/oauth/token' \ -d 'grant_type=refresh_token' \ -d 'client_id=<CLIENT_ID>' \ -d 'client_secret=<CLIENT_SECRET>' \ -d 'refresh_token=<REFRESH_TOKEN>'