Questions tagged «instagram»

20
如何在不通过用户身份验证的情况下从Instagram获取用户的媒体?
我试图将用户最近的Instagram媒体放在侧边栏上。我正在尝试使用Instagram API来获取媒体。 http://instagram.com/developer/endpoints/users/ 该文档说GET https://api.instagram.com/v1/users/<user-id>/media/recent/,但说要传递OAuth访问令牌。访问令牌表示代表用户执行操作的授权。我不希望用户登录Instagram在侧栏上看到它。他们甚至不需要拥有Instagram帐户。 例如,我可以不登录Instagram 即可访问http://instagram.com/thebrainscoop。我想通过API做到这一点。 在Instagram API中,未经用户身份验证的请求传递client_id而不是access_token。但是,如果尝试这样做,则会得到: { "meta":{ "error_type":"OAuthParameterException", "code":400, "error_message":"\"access_token\" URL parameter missing. This OAuth request requires an \"access_token\" URL parameter." } } 那么,这不可能吗?在不要求用户先通过OAuth登录Instagram帐户的情况下,是否无法获取用户的最新(公共)媒体?


9
如何使用API​​将图片发布到instagram
我正在构建一个PHP应用程序,该应用程序需要将用户上传的图片直接发布到Instagram,但是在快速搜索后,我发现API中没有这样的功能:(感觉很奇怪...因为他们应该提供一个。我我不确定是否有其他方法(适用于Android和iOS的应用除外)使用php上传图片。如果有可能,请给我提出任何想法。 我也读过这个 如何使用PHP与Instagram共享链接和照片
107 php  instagram 

3
canOpenUrl-不允许该应用查询方案图
我正在尝试将Instagram网址添加到iOS9中的应用中,但是我收到以下警告: -canOpenURL: failed for URL: "instragram://media?id=MEDIA_ID" - error: "This app is not allowed to query for scheme instragram" 但是,我LSApplicationQueriesSchemes在我的中添加了以下内容info.plist: <key>LSApplicationQueriesSchemes</key> <array> <string>instagram</string> <string>instagram://media?id=MEDIA_ID</string>//this one seems to be the issue </array> 任何帮助是极大的赞赏? 编辑1 这是我用来打开instagram的代码: NSURL * instagramURL = [NSURL URLWithString:@"instragram://media?id=MEDIA_ID"];//edit: note, to anyone copy pasting this code, please notice the typo …

18
如何在iOS中的Instagram上共享图像?
我的客户希望在Instagram,Twitter,Facebook上共享图像。 我已经完成了Twitter和Facebook,但是在互联网上找不到任何API或任何东西可以在Instagram上共享图像。是否可以在Instagram上分享图片?如果是,那怎么办? 当我检查Instagram的开发人员站点时,我发现了Ruby on Rails和Python库。但是没有iOS Sdk的文档 我已经根据instagram.com/developer从instagram获取了令牌,但现在不知道下一步如何与instagram图像共享。

8
像在使用iPhone的CSS和jQuery的Instagram iPhone应用程序中那样,获得一个粘性标题以“推动”
Instagram应用程序具有一个不错的粘性标头,可以将当前的标头推上新标头。我找到了一个很棒的教程,说明如何在Android平台上原生执行此操作,但我希望使用JavaScript和CSS来完成。 我能够让标题切换到新标题,但似乎找不到模仿Instagram的方式。任何帮助是极大的赞赏。 *编辑:当使用指出的注释中的Cj作为航路点滚动时,我能够使标题停留在页面顶部。(链接至路标)。我遇到的主要问题是获得instagram在其iPhone移动应用程序中使用的“推动”效果。我会链接到一个示例,但我从未见过使用它。* * *编辑2:使用@Chris提供的部分代码笔,可以使标头粘贴。然后,我添加了.slideUp效果。我的问题现在是使.slideUp效果仅在到达下一个标头时发生。现在,效果会在滚动上激活。 这是代码: (function() { function stickyTitles(stickies) { this.load = function() { stickies.each(function(){ var thisSticky = jQuery(this); jQuery.data(thisSticky[0], 'pos', thisSticky.offset().top); }); } this.scroll = function() { stickies.each(function(){ var thisSticky = jQuery(this), pos = jQuery.data(thisSticky[0], 'pos'); if (pos <= jQuery(window).scrollTop()) { thisSticky.addClass("fixed"); // added this $(".followMeBar:parent").slideUp(); } else …

10
Instagram API:如何获取所有用户媒体?
通常,我需要获取所有用户媒体。 用户有250多张照片。 我做 /users/1/media/recent/?access_token=...&count=250 但是它只返回20张照片。 也许instagram在获取媒体方面有限制。如果是这样,响应可以分页来解决。但是只有最大证件照。如何知道要分页的第一张(最小)身份证照片?
67 api  instagram 

7
无法获得Instagram基本显示API的access_token
我正在尝试从Instagram获取access_token,以将其Basic Display API用于新的应用程序(只需在网页上显示推文)。 我按照以下步骤操作:https : //developers.facebook.com/docs/instagram-basic-display-api/getting-started 但我陷入了第5步:将代码交换为令牌 cURL请求始终返回400错误,并显示以下消息:“找不到匹配代码或已经使用了匹配代码” 但是,经过多次测试,我只获得了一次access_token,但是它在大约一个小时后失效。这似乎是非常随机的。 Instagram基本显示API似乎很新。前一段时间,我使用了在https://www.instagram.com/developer/网站上创建的应用程序,并且该程序过去一直有效。现在此站点显示此消息: 更新:从2019年10月15日开始,Instagram API平台上的新客户端注册和权限审查将终止,转而使用Instagram Basic Display API。 ...以及指向developers.facebook.com的链接。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.