Instagram Demo

Number of APIs: 4

Follow along on the livestream

Get Started

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.

  1. 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

  2. Token POST https://api.instagram.com/oauth/access_token

  3. User Node GET https://graph.instagram.com/me?fields=id,username&access_token={{access-token}}

  4. IG Media Request GET https://graph.instagram.com/me/media?fields=media_url,caption&access_token={{access-token}}