instagram

Why Instagram API return empty result?

纵然是瞬间 提交于 2019-12-10 15:55:42
问题 1) I'm in Sandbox mode 2) App have a Server-side (Explicit) Flow 3) "Disable implicit OAuth" checkbox active in Manage Clients 4) I have authorized my sandbox user - Instagram API returns data with access_token and user When i try to retrive some data from Relationship Endpoints Instagram API returns an empty data as this: {"pagination":{},"meta":{"code":200},"data":[]} Code: ACCESS_TOKEN = xxxxx url = 'https://api.instagram.com/v1/users/self/follows?access_token=%s' % ACCESS_TOKEN response =

Instagram iOS hooks getting the posted media id back

梦想与她 提交于 2019-12-10 15:16:16
问题 My iOS app is using the Instagram iOS hooks to post photos.. It works great and no issues over there. My Question is: Can I get the posted Media Id back from Instagram? Let me know if you need any further explanation here. Thx 回答1: I am also facing the same issue. I have done a lot of research but i didn't find any solution. So there is no way we can get back the Media Id. May be in future Instagram provide such solution, but currently there is no way to do so via programming in Mobile App.

Instagram API. “Unable to reach callback url”

对着背影说爱祢 提交于 2019-12-10 14:17:57
问题 Ok guys so here is the setup. I am developing a site for a festival and need to use the Instragram API. The client would like to automatically load pictures from Instagram that use a certain hashtag. No problem here, the instagram API supports this function and many more. But when I try to make a subscription (via a cURL Post Operation) I get an error response that my callback-url is unreachable. But it is reachable. I can surf to it via the browser no problem. My cURL operation looks like

How to get Likes of Instagram photo posts in Facebook Graph API?

核能气质少年 提交于 2019-12-10 13:36:58
问题 I am developing an app that processes <used_id>/posts connection to read the posts a user have made and count the likes and comments that have been received. Yesterday I noticed that Instagram photo posts do not appear in posts connection. After a little search I found this Posts from Instagram not showing up on Facebook Open Graph API after which I was able to see Instagram photos in Feed connection if permission user_actions:instapp was added (or friends_actions:instapp for friend posts).

How to authenticate instagram without redirect url? no server

做~自己de王妃 提交于 2019-12-10 13:19:39
问题 I am trying to write a client side authentication for instagram, however I want to do so without a redirect uri, i will not be hosting a sever. https://instagram.com/oauth/authorize/?client_id=CLIENT-ID&redirect_uri=REDIRECT-URI&response_type=token the dev api states this is the implicit way, however i cannot find a solution 回答1: The short answer is, you cannot do without a redirect uri. This is how OAuth works. You need at least a uri to receive the access token. The uri could be hosted on

How does one properly filter nested queries with FB Graph Api (Instagram)?

▼魔方 西西 提交于 2019-12-10 12:27:00
问题 I would like to get all media objects that are of type "VIDEO". Here is my query which always returns all media objects regardless of the type: ?fields=media{media_type,insights.metric(reach, impressions)}&filtering=[{field: "media_type", operator: "EQUAL", value: "VIDEO"}] "media.media_type" is also not working. Thanks in advance! output format: "data": [ { "media_type": "IMAGE", "insights": { "data": [ { "name": "reach", "period": "lifetime", "values": [ { "value": 1476 } ], "title":

Instagram access token

纵然是瞬间 提交于 2019-12-10 11:58:38
问题 I need to display intsagram photo by one user in my webpage. So, users that watch the page don't need any "login" mask, just look at the photos by the user (which is the owner of the current webpage). So, in my further application I can call: https://api.instagram.com/v1/users/" + userID + "/media/recent?client_id=" + id + "&access_token=2822asfa656.24523525.934634634csafa8asasaeea40 But Instagram API says Access tokens may expire at any time in the future. . So how can I manage this scenario

Instagram API returning square only (cropped) images

一个人想着一个人 提交于 2019-12-10 11:44:36
问题 1 year ago Instagram migrated the API to support landscape and portrait formats. Looks like last week the api is returning a cropped square image. Example: https://www.instagram.com/p/BHLY4N0jMfA/ (the image is not square) Api endpoint (https://api.instagram.com/v1/tags/igapitest/media/recent) returns cropped square image: ... images: { low_resolution: { url: "https://scontent.cdninstagram.com/t51.2885-15/s320x320/e35/c224.0.631.631/13556933_1110271362362401_1093314529_n.jpg?ig_cache_key

Instagram auto like Bookmarklet

a 夏天 提交于 2019-12-10 11:19:52
问题 Instagram Like (heart) auto click Post Bookmarklet Objective: Click all "Like" heart on page http://www.gramfeed.com/instagram/tags#photo Here is the code I was working with. This one worked on another site, var a = document.getElementsByTagName('a'); var b = []; for(var i=0, len = a.length; i < len; i++){ if(a[i].id.indexOf('like') !== -1){b.push(a[i]) } }; for(var i=0, len = b.length; i < len; i++){ b[i].click() }; 回答1: The following should work; I've tested it on my end, and it likes the

Adding Features to Approve Instagram Client

心已入冬 提交于 2019-12-10 11:18:27
问题 I have an approved Instagram client (i.e. my app was reviewed an is live) and I wanted to add a new feature to the application. I've heard some applications were getting their clients revoked and I want to know, can I proactively submit my new features for approval before pushing them into production? Does anyone have any experience with this? I just want to avoid the plug being pulled because my customers pay for my application and use it daily. I'd like to avoid any service interruption. My