Skip to content

Instantly share code, notes, and snippets.

@cdsaenz
Forked from cavi21/mercadolibre_access_token.sh
Created February 22, 2022 16:24
Show Gist options
  • Save cdsaenz/ba7276604c3d37f97e1172957bc4575e to your computer and use it in GitHub Desktop.
Save cdsaenz/ba7276604c3d37f97e1172957bc4575e to your computer and use it in GitHub Desktop.
Generate an access token for a MercadoLibre Account without the need of doing it through OAuth flow
curl -s -X POST -H 'content-type: application/x-www-form-urlencoded' 'https://api.mercadolibre.com/oauth/token' -d 'grant_type=client_credentials' -d 'client_id=[CLIENT_ID]' -d 'client_secret=[CLIENT_SECRET]'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment