Skip to content

Instantly share code, notes, and snippets.

@sethkontny
Forked from saetia/gist:45f00ce3e03ddc2b24bf
Last active August 29, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sethkontny/b857162532b4ba6b0418 to your computer and use it in GitHub Desktop.
Save sethkontny/b857162532b4ba6b0418 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