instagram

Instagram access token expiry time

烂漫一生 提交于 2019-12-11 14:33:15
问题 I am using Instagram token for login. After login, I am getting token also, but that token is not permanent. It will expire after some times. What should we do after token is expired; or how can we know that token will got expired? 回答1: Use the Access Token Debugger found here: https://developers.facebook.com/tools/debug/accesstoken/ Enter your User Access Token and click "Debug". At the bottom, there is a button labeled "Extend Access Token". That will convert your short-lived token to a

Style embedded Instagram Photos horizontally

主宰稳场 提交于 2019-12-11 13:46:10
问题 I am having a hard time adding a simple style to embedded instagram photos. I wanted the photos side by side so I used an unordered list and styled it so it was not bulleted and listed them horizontally. However, the style just does not seem to be applied to the embedded Instagram photos. The CSS #instapost ul { list-style-type: none; } #instapost ul li { display: inline; } The HTML <div id="instapost"> <ul> <li>(copy any post from instagram and make max-width=320)</li> <li>(copy any post

The captcha solution was not correct. Please try again

ぃ、小莉子 提交于 2019-12-11 13:23:41
问题 I'm trying to use login form that contains Oauth2 feature to login the user with instagram. For this purpose I'm trying to create new Client id in instagram developer page but here are the problems I'm facing: The captcha solution was not correct. Please try again Submission error: please fill out all required fields. although I 'v no captcha in the form of creating new client ID and I'v filled out all the fields. Second thing I want to know: Can I use localhost for website URLS and the

Instagram API - get ALL users for specific hashtag or location

感情迁移 提交于 2019-12-11 13:23:26
问题 I've started looking into the Instagram API and I want to pull out ALL users that have used a specific hashtag or have been at a given location. As the documentation says I can get the RECENT users for a hashtag and location using the following methods: https://api.instagram.com/v1/tags/{tag}/media/recent?access_token={token} https://api.instagram.com/v1/media/search?lat={latitude}&lng={longitude}&access_token={token} I am getting the recent (up to 7 minutes old) data with these. My question

How can we find our instaram user ID and followers list and ther user ID from iphone app [duplicate]

瘦欲@ 提交于 2019-12-11 13:10:10
问题 This question already has an answer here : How to get instagram user ID/access tocken from iphone app (1 answer) Closed 5 years ago . I have an i phone app,on a button click how can I take our Instagram UserID ? Currently I am using instagram SDK and i am getting my followers' ID, But not getting an idea how to find my USER ID This is the code i am using now to find followers USER ID 回答1: It is being fixed,follow the above link You will get access token with your user id and clint id in a

Instagram API - Redirect url

落花浮王杯 提交于 2019-12-11 12:45:59
问题 I have a plugin that need some instagram infos of my application. This plugin just show photo feed. I have created the application on the instagram developers and get my client id, but, what's the redirect url? I put my website link because i really don't understand what is that. What i need is: id: 'MY PROFILE ID', redirectUrl: 'http://www.kyriosfestival.com.br', clientId: 'MY CLIENT ID FROM MY APPLICATION', accessToken: 'GENERATED FROM INTERNET' And it's not working. I have used a access

Get `max_id` of of specific Instagram Story Poll Voters

此生再无相见时 提交于 2019-12-11 12:03:30
问题 I know that I can receive the Story data and the Poll voters data using getStoryPollVoters() which takes the following parameters: * @param string $storyId The story media item's ID in Instagram's internal format (ie "1542304813904481224_6112344004"). * @param string $pollId The poll ID in Instagram's internal format (ie "17956159684032257"). * @param int $votingOption Value that represents the voting option of the voter. 0 for the first option, 1 for the second option. * @param string|null

How many tags can be subscribed for one client_id on Instagram?

泄露秘密 提交于 2019-12-11 11:33:21
问题 Currently, Instagram limits me to subscribe only 4 tags for a client_id? If I subscribe 5th tags, it randomly deletes one and adds 5th one? Is there a known limit? I understand this question is not coding related but can not find anywhere in Instagram developer document, So perhaps this question will help community in general. 来源: https://stackoverflow.com/questions/21636801/how-many-tags-can-be-subscribed-for-one-client-id-on-instagram

Create a Wall like Instagram or FB [closed]

爷,独闯天下 提交于 2019-12-11 08:56:08
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 6 years ago . I just want to create a wall in my app just like in Instagram and Facebook.And i have no such idea to do this. I am in a search for basic idea how to create a simple wall in my Android app.Can any one plz provide a tutorial or any concept of doing this(wall)... 回答1: You want to

How can I find out if user has actually uploaded photo to instagram?

喜你入骨 提交于 2019-12-11 08:30:20
问题 My mobile app will post photos to instagram via the mobile sharing. I would like to know if the user actually uploaded the photo in the instagram app. And if he/she did - how can I get an id of an uploaded photo? 回答1: Get that users recent photos using API and then compare the created_time of the most recent photo and then find a match for the image. 回答2: You can use the Real Time Photo Updates service. You can receive a notification to your backend when a new photo is uploaded. 来源: https:/