instagram-api

Instagram dark posts, using api to read info and do operations

谁说我不能喝 提交于 2019-12-25 13:15:18
问题 my company is trying to make interactions with instagram dark posts(It is when you create an ad to target specific people, unpublished posts like facebook dark posts). I have searched nearly all of documentations and I am noting what I have found. There is Marketing api in facebook Marketing Api Link There is a link I have taken from a php scrapper "www.instagram.com/p/{short_code}/?__a=1" Option 2 is giving likes and comments but I think it is limited. There is another link with "/graphql

Whenever I import the node-instagram module Meteor crashes?

房东的猫 提交于 2019-12-25 07:48:48
问题 I'm working on a Meteor app that uses the Instagram API. I added the node-instagram module which seems to be pretty up to date but when I added import Instagram from 'node-instagram' I get a crash starting the app. Any idea where I should look for the cause based on this output? Thanks in advance for any assistance! C:\Users\Harry\AppData\Local\.meteor\packages\templating-compiler\1.2.15\plugin.compileTemplatesBatch.os\npm\node_modules\meteor\promise\node_modules\meteor-promise\promise_server

Instagram API Basic Display: Problem with requesting access_token

天大地大妈咪最大 提交于 2019-12-24 20:37:28
问题 I was following Instagram API Basic Display documentation. I've created Facebook App, configured Instagram Basic Display, added Test User, Authenticated the Test User using GET request: https://api.instagram.com/oauth/authorize ?app_id={app-id} &redirect_uri={redirect-uri} &scope=user_profile,user_media &response_type=code But when I try to request access_token using POST request from the documentation: I receive ERROR 400 with message "You must provide a client_id". However, documentation

Implicit Auth. Flow - No Access Token Appended on Redirect - iOS

耗尽温柔 提交于 2019-12-24 18:43:37
问题 I made a web app with Instagram API that uses Client-Side (Implicit) Authentication. I redirect the user to https://api.instagram.com/oauth/authorize/?client_id=CLIENT-ID&redirect_uri=REDIRECT-URI&response_type=token and the Instagram log-in page appears. Normally, Instagram redirects the app to http://your-redirect-uri#access_token=ACCESS-TOKEN And I grab the access_token to use it in the app. This works in Chrome, Firefox, and Edge on my pc. However, the redirection doesn't work on my

Implicit Auth. Flow - No Access Token Appended on Redirect - iOS

丶灬走出姿态 提交于 2019-12-24 18:43:12
问题 I made a web app with Instagram API that uses Client-Side (Implicit) Authentication. I redirect the user to https://api.instagram.com/oauth/authorize/?client_id=CLIENT-ID&redirect_uri=REDIRECT-URI&response_type=token and the Instagram log-in page appears. Normally, Instagram redirects the app to http://your-redirect-uri#access_token=ACCESS-TOKEN And I grab the access_token to use it in the app. This works in Chrome, Firefox, and Edge on my pc. However, the redirection doesn't work on my

error_type“:”OAuthAccessTokenException“,”code":400,.. (instagram)

强颜欢笑 提交于 2019-12-24 16:08:15
问题 I am accessing the instagram API to display content from a specific account, however I get this error: /**/ JSON_CALLBACK({"meta":{"error_type":"OAuthAccessTokenException","code":400,"error_message":"The access_token provided is invalid."}}) I have registered my app in https://www.instagram.com/developer/ bit when accessing here for example I get that above error: var endpoint = "https://api.instagram.com/v1/users/" + user_id + "/media/recent/?"; endpoint += "?count=99"; endpoint += "&client

Debugging Python Instagram API client - 'NoneType' has no len()

余生颓废 提交于 2019-12-24 15:33:02
问题 newbie to Python here, so bear with me... I'm trying to use the Python client for Instagram API, and am entering a valid access token and user ID when passing the token into the InstagramAPI constructor (yes, I'm running the code with my access token and user ID inserted, but left out for posting the question): from instagram.client import InstagramAPI access_token = "YOUR_ACCESS_TOKEN" api = InstagramAPI(access_token=access_token) recent_media, next_ = api.user_recent_media(user_id="userid",

Is it possible to use Instagram API in order to make a user list according to the number of followers?

人盡茶涼 提交于 2019-12-24 12:14:23
问题 Instagram API permission is strict now and I want to know whether the tool my company will make can get the permission from Instagram or not, because it may not suit with the 3 valid use case. We are an offshore company which develops application. One clients ( PR or Advertisement company) asked us to make an app which finds influencers(the user who has many followers) on Instagram so that the clients can ask the influencer to advertise their products. We want to make a influencer searching

Unification not providing me user password and username

烂漫一生 提交于 2019-12-24 10:56:38
问题 When I am using Instagram sharing then how can I get username and password from Instagram (current login user). $app = new UEApp(self::APP_SECRET, self::APP_SECRET); $user = new UEUser($this->currentUser->unification_userkey, $this->currentUser->unification_usersecret); $con = $access_token."@instagram.com/?username=rajneesh49&password=test&@instagram.com"; Now I am using static password and username then its working fine but How can I get current username and password(required filed by

Embed multiple instagram images without access_token

三世轮回 提交于 2019-12-24 08:29:27
问题 The instagram docs say: https://api.instagram.com/v1/tags/nofilter/media/recent?access_token=ACCESS_TOKEN The Instagram API requires an access_token from authenticated users for each endpoint. We no longer support making requests using just the client_id . But to get an access_token , users of my website must click through and authenticate, right? How can I display a few pictures of a specific instagram-tag on my public website, without requiring users to sign in via their instagram-account?