Skip to content

Instantly share code, notes, and snippets.

@cavi21
Created May 4, 2016 16:13
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cavi21/92d1704dc4b7b098529c85cc2a42c5db to your computer and use it in GitHub Desktop.
Save cavi21/92d1704dc4b7b098529c85cc2a42c5db 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