instagram

Instagram API to fetch pictures with specific hashtags [closed]

自作多情 提交于 2019-11-28 17:16:22
I want to get all the pictures with a specific hash tag from Instagram using PHP. How can I do that? Firstly, the Instagram API endpoint "tags" required OAuth authentication. You can query results for a particular hashtag (snowy in this case) using the following url It is rate limited to 5000 (X-Ratelimit-Limit:5000) per hour https://api.instagram.com/v1/tags/snowy/media/recent Sample response { "pagination": { "next_max_tag_id": "1370433362010", "deprecation_warning": "next_max_id and min_id are deprecated for this endpoint; use min_tag_id and max_tag_id instead", "next_max_id":

Uploading photos to Instagram via your own iOS app

淺唱寂寞╮ 提交于 2019-11-28 16:29:15
问题 Instagram recently made a change to their API policy which allowed developers to post pictures to the Instagram platform via their own app. Several other techniques we're previously employed to do this. One of them was to invoke the Instagram application which would essentially open up Instagram and do the sharing from there. A tutorial on how this can be done can be seen here: How to share image to Instagram from your own iOS app However there are several applications out there that allow

Instagram: Share photo from webpage

一笑奈何 提交于 2019-11-28 15:43:01
In my shopping site I had implemented the functionality for 'Login via Instagram' and found it is working well. Now is it possible to share a product image and its description to the user Instagram account or whether Instagram provides any javascript methods just like facebook, twitter, google+ etc. Thanks.. Steven Schobert The short answer is: No. The only way to post images is through the mobile app. From the Instagram API documentation: http://instagram.com/developer/endpoints/media/ At this time, uploading via the API is not possible. We made a conscious choice not to add this for the

Get all photos from Instagram which have a specific hashtag with PHP [closed]

半世苍凉 提交于 2019-11-28 15:21:25
I need to get some pictures which have a specific hashtag using PHP ? Any help will be awesome, or hint ? Anirudh Ramanathan There is the instagram public API's tags section that can help you do this. Here's another example I wrote a while ago: <?php // Get class for Instagram // More examples here: https://github.com/cosenary/Instagram-PHP-API require_once 'instagram.class.php'; // Initialize class with client_id // Register at http://instagram.com/developer/ and replace client_id with your own $instagram = new Instagram('CLIENT_ID_HERE'); // Set keyword for #hashtag $tag = 'KEYWORD HERE'; //

Retrieving more than 150 Instagram comments

三世轮回 提交于 2019-11-28 15:02:57
问题 The Problem I would like to be able view all of the comments on any given piece of Instagram media, even if the media has over 150 comments. As of now, it is seemingly impossible to view more than the most recent 20 comments on a piece of media on the Instagram site and if one uses either the Instagram API Console or the Instagram API Libraries, the most recent 150 comments are returned with no options for pagination or viewing addition comments. What I Have Tried I first, of course, tried

Instagram Subscription API Asking For Access Token

蓝咒 提交于 2019-11-28 14:24:49
I have been using Instagram Subscription API to subscribe to Instagram real time updates. I have successfully subscribed to multiple subscriptions on Instagram. But now it is giving me the following error when I try to subscribe: meta": { "error_type": "OAuthAccessTokenException", "code": 400, "error_message": "The access_token provided is invalid." } Earlier it never used to ask for access token for subscription API. Can anyone please explain Instagram API. Too old but I hope will be helpful to some people. Creating a subscription is 4 step process:- Step One: Direct your user to our

Pulling Instagram images to my app [closed]

心已入冬 提交于 2019-11-28 12:27:31
I'm developing and iOS app for iPad where you can personalize Tea Cups importing photos from the roll. I'd love to add Instagram, so the user could add his Instagram's photos. Is there any SDK or Plugin for that? Instagram has an API. You can get user photos using this API with simple HTTP requests. Check out this page . You should check out this wonderful helper library which will save you precious hours working with the Instagram API. http://github.com/shyambhat/InstagramKit 来源: https://stackoverflow.com/questions/16388251/pulling-instagram-images-to-my-app

Instagram Search for a tag within particular date range

落爺英雄遲暮 提交于 2019-11-28 11:50:36
I am looking to retrieve results from instagram for a particular tag mytag , I tried using this API call, https://api.instagram.com/v1/tags/ {tag-name}/media/recent but it only returned 33 results even though there are more results. This question can be considered an extension to this question: How To Search Instagram via API Query? What is the way to return instagram results for a particular tag within a date range? This may be done through the min_tag_id and max_tag_id which. Not sure how to convert my date time to min_tag_id or max_tag_id? call the API with max_tag_id and min_tag_id like

Sharing Image on instagram in ios

柔情痞子 提交于 2019-11-28 11:43:25
I am having an app in which I am sharing an image on instagram and it works perfectly fine. As shown in the screenshot. When I press the button share on instagram it opens up in UIActivityviewcontroller. Is it possible that If I click on Share on Instagram and and it takes me directly to the native instagram app? If the user has other apps installed in his device that apps also shows because of the UIActivityViewController. I don't want to show UIActivityviewcontroller saying "Open In Instagram". Thanks in advance. Edited I am taking a screenshot of a view and sharing that screenshot on

New Instagram API - How do you request tagged media?

不打扰是莪最后的温柔 提交于 2019-11-28 11:24:30
This question is going to seem like a duplicate of all the previous ones around this issue, specifically this question PHP Instagram API - How to get MIN_TAG_ID and MAX_TAG_ID . But with the new API changes the previous answers no longer work. Goal I want to request media for a specific tag. The Documentation Instagrams documentation on getting tagged media specifies you need to have the public_content scope and that there are 4 available parameters; ACCESS_TOKEN , COUNT , MIN_TAG_ID , and MAX_TAG_ID . My API Request https://api.instagram.com/v1/tags/cats/media/recent?access_token=TOKEN&max