Skip to content

Instantly share code, notes, and snippets.

@saetia
Created April 1, 2015 22:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save saetia/45f00ce3e03ddc2b24bf to your computer and use it in GitHub Desktop.
Save saetia/45f00ce3e03ddc2b24bf to your computer and use it in GitHub Desktop.
Instagram Access Token
https://api.instagram.com/oauth/authorize/?client_id=[client_id]&redirect_uri=[redirect_uri]&response_type=code
curl -F 'client_id=[client_id]' -F 'client_secret=[client_secret]' -F 'grant_type=authorization_code' -F 'redirect_uri=[redirect_url]' -F 'code=[code]' https://api.instagram.com/oauth/access_token
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment