instagram

Instagram Store Data, The Marketing API, and Testing

大憨熊 提交于 2020-01-25 07:06:30
问题 It looks like it's now possible to sell Products on Instagram (so long as the merchandiser is verified with Instagram to sell Products) entirely within the app without needing an external link (the checkout / order flow can happen all within the app). Product data can be set up by seeding this Facebook Product Catalog (using the API? or the Catalog Manager). Product data can also be updated through API calls (or on a schedule, the Catalog Manager appears to have an option for setting up a

Instagram Store Data, The Marketing API, and Testing

我们两清 提交于 2020-01-25 07:06:10
问题 It looks like it's now possible to sell Products on Instagram (so long as the merchandiser is verified with Instagram to sell Products) entirely within the app without needing an external link (the checkout / order flow can happen all within the app). Product data can be set up by seeding this Facebook Product Catalog (using the API? or the Catalog Manager). Product data can also be updated through API calls (or on a schedule, the Catalog Manager appears to have an option for setting up a

Uploading an Image to Instagram with Instagram API

為{幸葍}努か 提交于 2020-01-24 10:21:31
问题 I have been searching the internet that "how to upload an image to instagram with instagram api" and found many replies. Most of the people are saying that it is not possible and they are referring to this link. Since all of these replies are old and I could not find the text At this time, uploading via the API is not possible. We made a conscious choice not to add this for the following reasons: Instagram is about your life on the go – we hope to encourage photos from within the app. We want

Uploading an Image to Instagram with Instagram API

情到浓时终转凉″ 提交于 2020-01-24 10:21:28
问题 I have been searching the internet that "how to upload an image to instagram with instagram api" and found many replies. Most of the people are saying that it is not possible and they are referring to this link. Since all of these replies are old and I could not find the text At this time, uploading via the API is not possible. We made a conscious choice not to add this for the following reasons: Instagram is about your life on the go – we hope to encourage photos from within the app. We want

Instagram API retrieve the code using PHP

Deadly 提交于 2020-01-23 17:17:12
问题 I try to use the Instagram API but it's really not easy. According to the API documentation, a code must be retrieved in order to get an access token and then make requests to Instagram API. But after few try, I don't succeed. I already well-configured the settings in https://www.instagram.com/developer I call the url api.instagram.com/oauth/authorize/?client_id=[CLIENT_ID]&redirect_uri=[REDIRECT_URI]&response_type=code with curl , but I don't have the redirect uri with the code in response.

How do I access pagination in UsersResponse from the Relationships endpoint in InstaSharp?

我是研究僧i 提交于 2020-01-23 13:29:28
问题 I have an InstaSharp.Endpoints.Relationships.Authenticated object EP_RELATIONSHIPS , and I can call EP_RELATIONSHIPS.Follows() to get a list of users I'm following. I follow a few hundred people, but I only get a result of 50. When I check the JSON data on the Instagram API page using the API Console, I can see that there's a pagination URL. Other return objects such as InstaSharp.Model.Responses.MediasResponse have an object called .Pagination that seem to provide this functionality. Is this

How to get Instagram image details

耗尽温柔 提交于 2020-01-23 13:19:05
问题 I am working on an app to get images details from Instagram by using selenium with python. driver.execute_script(SCROLL_TOP) driver.execute_script(SCROLL_BOTTOM) In the result, all posted images and captions can be gotten from driver.page_source But when I trying to get more information about an image (e.g, number of likes, date of the image published). I need to access <script type="text/javascript">window._sharedData = {...}</script> The '...' in the previous code is a JSON block. It

Fetching all user's pictures with the Instagram gem

青春壹個敷衍的年華 提交于 2020-01-23 10:09:43
问题 I'd like to fetch all my pictures using the instagram gem (https://github.com/Instagram/instagram-ruby-gem) but I'm not able to find out how. This is what I'm trying so far: client = Instagram.client(access_token: token) client.user_recent_media.each do |media| puts media.images.thumbnail.url end It apparently works (those are my Instagram images) but I'm not able to fetch all of them or to select in any way which content I want from Instagram. For example I see that the method user_recent

Get user's gender on Instagram

我是研究僧i 提交于 2020-01-23 07:01:25
问题 I just wonder whether there's a way to get user's gender on instagram... I walked through instagram's api and for user's info got from users/userId doesn't include the gender info. Thanks for your help. 回答1: NO , there is currently no way to get the gender of the instagram user from API 回答2: Instagram API does not work, they do not allow this anymore. The thing you can do, is to scrap name of the user and then determine gender based on name. There is Python lib for this, you can find it here:

how to mention/tag users with '@' on a django developed project

给你一囗甜甜゛ 提交于 2020-01-22 16:58:25
问题 I am trying to implement the "@" feature used on social sites such as twitter to tag or mention users on my django project. Say for example, "@stack" when clicked should go to stack's profile. How to do that would be helpful to me. 回答1: The mention system handled on editor right? Here is django-markdown-editor who providing to direct mention user @[username] => @username see also about function markdown_find_mentions, useful if you need to implement the notification system for user mentioned