instagram-api

Is it possible retrieve follower list from new instagram-graph-api?

一个人想着一个人 提交于 2020-01-25 10:10:46
问题 is it possible retrieve instagram follower list from new instagram graph api? It seen that instagram API are deprecated. do you know another method to retrieve instagram follower? 回答1: There is no API to get the list of followers for Instagram anymore. This is for privacy reasons, users who did not specifically authorize your App should not show up anywhere in any API call. Everything you CAN do with the API is listed here: https://developers.facebook.com/docs/instagram-api/reference 来源:

Is it possible retrieve follower list from new instagram-graph-api?

不羁岁月 提交于 2020-01-25 10:09:21
问题 is it possible retrieve instagram follower list from new instagram graph api? It seen that instagram API are deprecated. do you know another method to retrieve instagram follower? 回答1: There is no API to get the list of followers for Instagram anymore. This is for privacy reasons, users who did not specifically authorize your App should not show up anywhere in any API call. Everything you CAN do with the API is listed here: https://developers.facebook.com/docs/instagram-api/reference 来源:

Fetching all user's pictures with the Instagram gem

青春壹個敷衍的年華 提交于 2020-01-23 10:09:43
问题 I'd like to fetch all my pictures using the instagram gem (https://github.com/Instagram/instagram-ruby-gem) but I'm not able to find out how. This is what I'm trying so far: client = Instagram.client(access_token: token) client.user_recent_media.each do |media| puts media.images.thumbnail.url end It apparently works (those are my Instagram images) but I'm not able to fetch all of them or to select in any way which content I want from Instagram. For example I see that the method user_recent

Embed Instagram feed to website sidebar [closed]

荒凉一梦 提交于 2020-01-23 02:11:27
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 9 months ago . i am trying to integrate Instagram feed of client to website sidebar . I googled and did some research .I didn't find direct way to integrate feeds . I went through third party app like Snapwidget . Its pretty good but problem with that is that when i click on the feed displayed

You are not a sandbox user of this client. Error Codeigniter-Instagram api

早过忘川 提交于 2020-01-22 19:04:04
问题 In my codeigniter project I am trying to use Instagram API for log in. This is the library which I am using. But when going to the login page, it is showing error {"code": 403, "error_type": "OAuthForbiddenException", "error_message": "You are not a sandbox user of this client"} The sample url is https://www.instagram.com/oauth/authorize/?client_id=[client ID]&redirect_uri=[your url]&response_type=code Why it is working like this? Any help could be appreciated 回答1: As per this error: {"code":

Extracting ACCESS_TOKEN from Instagram redirect with Angular 5(Implicit Authentication)

时光怂恿深爱的人放手 提交于 2020-01-16 17:59:54
问题 Since I'm developing a pure frontend app with no backend, I'm going with Instagram implicit authentication. The problem is, after the user authorizes the app, Instagram redirects to my redirect_uri with the access token like this, http://your-redirect-uri#access_token=ACCESS-TOKEN . How do I extract the access token from this? I tried using the router but with '#' it was not successful 回答1: Use window.location.hash to access to all parameters starting from #. Or you can use window.location

Getting number of followers of a user in instagram using Instagram API

荒凉一梦 提交于 2020-01-16 01:12:38
问题 I know this has been asked before .. but my code doesn't seem to work for users other than the one using whom accesstoken is created .. i.e I am able to access the profile of only one user.(using whom I created accesstoken) from urllib2 import urlopen from json import load import json import json import sys import time import requests userid="userid_of_some_instagram_user" access_token="mytoken" url = "https://api.instagram.com/v1/users/%s/?access_token=%s"%(userid,access_token) response

Get access_token using Windows Service's or Console App. for Instagram Api

时光怂恿深爱的人放手 提交于 2020-01-13 05:50:11
问题 My windows service is collect instagram datas from instagram api. I was using client_id but this uses format is removed. Instagram api is want to access_token but Oauth 2.0 is web-based. or not? I using .NET and my application type is windows service and web request don't work because this call url: "https://www.instagram.com/oauth/authorize/?client_id=CLIENT-ID&redirect_uri=REDIRECT-URI&response_type=code" is have one more contain redirect. so web response haven't contain my web application

Instagram Oauth2 implicit authentication redirect to page unavailable if you introduce bad password

二次信任 提交于 2020-01-13 05:34:08
问题 I am using the oauth2 Instagram implicit flow to do login in Instagram, the base url that I am using is this: https://api.instagram.com/oauth/authorize/?client_id=MY_CLIENT_ID&redirect_uri=http://example.com/oauth_redirect.html&response_type=token This url show me the Instagram login page, I introduce user and password and if they are correct the API redirects me to the redirect_uri, but when I introduce a bad user or password it redirects me to this unavailable page in Instagram: https://www

My App was rejected by Instagram Basic Display API review due to invalid reasons

余生长醉 提交于 2020-01-08 23:56:18
问题 I'm developing an app that allows users to connect their Instagram app within my app. So, other connected users from my app can visit their Instagram profile. This is similar to what Tinder have already implemented in their app. Refer this link. For implementing this, we need to implement Instagram Basic Display API as per the new announcement by Facebook on October 16, 2019 in this blog. Now, it is mandatory that all Instagram apps must be submitted for review from Facebook app (add