instagram

Instagram oauth api gives { “code”: 400, “error_type”: “OAuthException”, “error_message”: “No matching code found.” }

房东的猫 提交于 2019-11-30 12:45:50
问题 I am working on an application that integrates with Instagram API to access the user information. I successfully fetch the Access Token using the authorize url but unable to fetch the userId using access_token url: i am tried both the endpoints: https://api.instagram.com/oauth/access_token?client_id=48275564e2c445f6b8e1356djfha3e0c&client_secret=ab2062da9f314e3489dke7ae9cbe6e5d&redirect_uri=http://localhost&grant_type=authorization_code https://api.instagram.com/oauth/access_token with the

Will be Instagram login totally deprecated?

点点圈 提交于 2019-11-30 12:44:43
问题 Instagram announced the Instagram Platform API deprecation : "To continuously improve Instagram users' privacy and security, we are accelerating the deprecation of Instagram API Platform" Their documentation and changelog says to refer to new Instagram Graph API . Is it clear that many, almost every old endpoints are now deprecated, but nothing is said about login functionality. The "new Instagram Graph API" seems to refer only to business oriented behaviour, so my question is: are they

Instagram new logo css background

烈酒焚心 提交于 2019-11-30 12:14:11
问题 Recently, Instagram logo has changed as you all know. I need vector logo but it is not possible, I mean gradients. Is there any css code for new logo? 回答1: Here is the css code for background color: .instagram{ width:100px; height:100px; background: #f09433; background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); background: linear-gradient

Instagram from Android open on certain user and add caption to uploaded image

 ̄綄美尐妖づ 提交于 2019-11-30 10:51:53
Instagram for Android is very limited, from what I have seen so far. My scenario is simple: allow the user to edit a picture and when he clicks on Send: Intent share = new Intent(Intent.ACTION_SEND); share.setType("image/jpeg"); Then with queryIntentActivities() I search to see if Instagram is installed. If it is I send the path of my image to be uploaded: share.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///" + path to myfile.png")); share.setClassName(resolveInfo.activityInfo.packageName, resolveInfo.activityInfo.name); share.putExtra(Intent.EXTRA_SUBJECT, "Sample subject"); share.putExtra

Instagram bans access to its API

别来无恙 提交于 2019-11-30 10:38:05
问题 Does anybody know about the latest Instagram news: "Starting 10/1/2017, all permissions other than the basic permission will be unavailable to submit for or obtain." What is truth to this? If we submit before, are they going to still check the submission? Do they plan to ban old approved API accesses too? If anybody made it find a bit of info about this I would be very grateful. The news is kinda surprising and concerning with no explanation involved. Thank you! 回答1: I tried to start a last

How to access Instagram feed of any user with new Graph API?

[亡魂溺海] 提交于 2019-11-30 10:21:21
问题 Facebook recently introduced Instagram Graph API, which allows to fetch data from Instagram page that is connected to your Facebook company page, instagram.com/developers states: The Instagram Graph API is Now Available to All Developers. For Non-Business Instagram Accounts please continue to use the existing Instagram API . So, for example, if my company has account instagram.com/my_first_company , I can only retrieve its feed and no one else. Using old Instagram API to retrieve public

Video upload with Instagram API now allowed?

北慕城南 提交于 2019-11-30 09:11:29
According to the Instagram documentation , Instagram only allows API uploads for images (JPG, PNG). A new iPhone app called Cinamatic allows users to upload videos to Instagram after loging in to the Instagram via Cinamatic. Is video upload via the Instagram API now allowed? There is no mention on the public documentation. According to this there might be the option for a white list of developers with access to the video uploads via the API. Any ideas? Satish Shinde At this time, uploading via the API is not possible. following reasons: Instagram is about your life on the go – we hope to

Instagram Auth Broken?

一世执手 提交于 2019-11-30 08:26:48
问题 We just noticed that our app which relies on Instagram as the primary login is no longer working. In investigating this further, it appears the callback URL for Instagram stopped working. Now whenever anyone logs in via Instagram or signs up via Instagram, they are taken to the Instagram app instead of being asked to authenticate or taken into our app experience. I checked another app that I know if, called "Print Studio" and the same thing is happening to them. Is this issue happening to

How can I put my Instagram client into Live mode?

廉价感情. 提交于 2019-11-30 08:09:59
I downloaded Instagram yesterday so I could sign up and then created a new client which is currently in Sandbox mode. I have created a website which searches for certain hashtags across Twitter and Instagram and the only thing which holds me back from going live is that the Instagram client is still in sandbox mode. The "Go Live" button is disabled and I have no idea what I need to do to get it enabled. The documentation doesn't say anything. It mentions somewhere that there is a review process, but I don't even see an option to submit my application for a review. How does that even work

Instagram feed based on tag and geolocation

非 Y 不嫁゛ 提交于 2019-11-30 07:48:01
Is it possible to get an instagram feed based on both a tag and location? I want all the images tagged with #stackExchange located in Johannesburg ( and surrounding radius of 100 km ) There is no API to get feed with both tag and location, there are independent APIs for tag and location, but you cannot currently make a single call and get results filtered for both. Tag API: https://api.instagram.com/v1/tags/snow/media/recent?access_token=ACCESS-TOKEN Location search API: https://api.instagram.com/v1/media/search?lat=48.858844&lng=2.294351&access_token=ACCESS-TOKEN You can make location API