instagram

Fetching tags with Instagram API

假如想象 提交于 2019-12-24 12:19:58
问题 I am trying to use the following URL: https://api.instagram.com/v1/tags/snow/media/recent?access_token=x&min_id=x&max_id=x to fetch some images and their ID's. It's working fine, but how can I have more images? I want thousands of images, but I'm only getting about 30 at most. I'm guessing it has to do with the min_id and max_id, but I can't get any more images. Could anyone help me out? Edit: I found out that Instagram has a 20 result limit. Is there any way using C# that will allow me to

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

instagram media endpoint bug: only returns limited photos

感情迁移 提交于 2019-12-24 11:37:22
问题 tested this on media endpoint querying on different hashtags... only a few photos is returned from #artona (like 20 something) out of the 5000+ photos available. #iphone returns nothing right now. this problem is not limited to this client. i notice this problem on http://statigr.am/search/iphone where it too returns nothing for iPhone and a few photos for #artona... also tried the instagram iPhone app... the number (limited) of photos returned are consistent between instagram clients so i

Uninitialized constant Instagram

自古美人都是妖i 提交于 2019-12-24 11:35:06
问题 I have a site, that is using Instagram api and there I'm getting this kind of error, when I'm running "rails c" or "rails server", /vagrant/Documents/RubyProjects/photo/config/initializers/instagram.rb:3:in `': uninitialized constant Instagram (NameError) I suppose it means that rails can't find instagram class or module. But there's a definition of instagram gem in my gemfile gem 'instagram' and in the bundle show command contains * instagram (1.1.1)* . The error is pointing at this: require

How to get instagram user ID/access tocken from iphone app

醉酒当歌 提交于 2019-12-24 10:40:06
问题 In my iPhone app,there is a switch for sharing the photos to users instagram profile. How to get the instagram id in my app. (i am not sharing the posts directly from the app,i woud like to send the particulars to server,from there sharing happens-) I have registered my app in Instagram and got CLIENT ID,Client secret 回答1: You have to use those ID and SECRET to authenticate with Instagram to get the access tokens for your users to make requests to the API, check here to see how you can

instagram sign in webview

爱⌒轻易说出口 提交于 2019-12-24 08:55:56
问题 I am trying to integrate Instagram auth in my app. But i don`t know how to make my webview full screen ? Instagram dialog This is my InstagramDialog.java public class InstagramDialog extends Dialog { static final float[] DIMENSIONS_LANDSCAPE = { 460, 260 }; static final float[] DIMENSIONS_PORTRAIT = { 420, 420 }; static final FrameLayout.LayoutParams FILL = new FrameLayout.LayoutParams( ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); static final int MARGIN = 0;

Curl call to ColdFusion - Instagram

岁酱吖の 提交于 2019-12-24 08:49:27
问题 I'm not experienced with cURL at all, but from what I can gather, it's equivalent to cfhttp. I want to work with the Instagram API and authenticate a user. Their example uses cURL. curl \-F 'client_id=CLIENT-ID' \ -F 'client_secret=CLIENT-SECRET' \ -F 'grant_type=authorization_code' \ -F 'redirect_uri=YOUR-REDIRECT-URI' \ -F 'code=CODE' \https://api.instagram.com/oauth/access_token Would I be correct in thinking the CF version would be: <cfhttp url="https://api.instagram.com/oauth/access

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?

How to get all users who upload photo in instagram for a specific location using location username or id?

不羁岁月 提交于 2019-12-24 04:48:08
问题 I want to get the list of users who has uploaded (shared) a photo on specific location (page)? the user can type @location_user_name and then share the photo. I want to get the user who share this photo from instagram api using location_user_name! I tried the code below https://api.instagram.com/v1/users/" + this.instagram_id + "/media/recent?min_timestamp=" + dateString + "&access_token=XXX"; I got the photos uploaded by the location itself not users. 回答1: As far as I know, Instagram always

How to extract cookie from Instagram API

瘦欲@ 提交于 2019-12-24 03:27:08
问题 I have this task to save user's strories, so I'm diiging into Instagram API. For now I know that it's unofficial to grab user's story, so we are using https://i.instagram.com/api/v1/feed/reels_tray/ That request needs a cookie with ds_user_id and sessionId inside. I'm trying to grab it from Postman, but all I've managed to do is to get the access token to official API. What request should I perform to store that ds_user_id and sessionId ? UPD Managed to get it through browser, but not through