Instagram Demo
Number of APIs: 4
Follow along on the livestream
Get Started
- Instagram Basic Display API
- Quickstart tutorial: Get Started
- Collection variables have been left in this example. They are dead tokens. Don't try to hack us!
This tutorial shows you how to configure an app in the App Dashboard, get a short-lived Instagram User Access Token, then use the token to query the API for an Instagram user’s profile. When you complete the tutorial you will have a basic understanding of how to get access tokens and permissions from your app users, and how to perform basic queries with the API.
-
IG_Oauth POST https://api.instagram.com/oauth/authorize?client_id={{app-id}}&redirect_uri={{redirect-uri}}&scope=user_profile,user_media&response_type=code
-
User Node GET https://graph.instagram.com/me?fields=id,username&access_token={{access-token}}
-
IG Media Request GET https://graph.instagram.com/me/media?fields=media_url,caption&access_token={{access-token}}