Skip to content

Instantly share code, notes, and snippets.

@ritik1009
Created December 3, 2022 14:14
Show Gist options
  • Save ritik1009/4050f85b37d12ff46fbe0c65e7c912fd to your computer and use it in GitHub Desktop.
Save ritik1009/4050f85b37d12ff46fbe0c65e7c912fd to your computer and use it in GitHub Desktop.
graph_url = 'https://graph.facebook.com/v15.0/'
def func_get_media_id(instagram_account_id = '',access_token = ''):
url = graph_url + instagram_account_id +'/media'
param = dict()
param['access_token'] = access_token
response = requests.get(url =url,params = param)
response = response.json()
return response
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment