I looked on the instagram api aand found no mention of postin picture and hashtag to a busness account other than mine
Can a user post through ios app to a buisness page in instagram?
Related
I'm starting work on a project where the client has a homepage designed to display blog posts and IG posts in a 3-wide mosaic sorted by newest posted. The IG posts are all from the website owner's account. The previous shop built this functionality but it is still using the sandbox API.
When looking at the documentation, I saw the following two notes:
"Add something unique to the community. Don't use the Instagram APIs to replicate or attempt to replace the functionality or essential user experiences of Instagram.com or any of Instagram's apps."
"You cannot replicate the core user experience of the Instagram apps or web site. For example, do not build a media viewer."
My question is, is a mosaic of combined posts - blog and the blog owners IG - presented in a mosaic in violation of these two rules? I'd like to have an idea before I start down the road of registering and attempting to have the functionality approved by instagram.
Recently, Instagram/Facebook stopped approving apps using their old Instagram API in favor of Facebook's graph api.
I'm struggling to figure out how to migrate of some of the functionality I'm wanting in my app.
With instagram, to get recent images with a given tag, you simply made a request to this URL:
https://api.instagram.com/v1/tags/{tag-name}/media/recent?access_token=ACCESS-TOKEN
Does the Facebook graph api for instagram have that? I couldn't find it in their documentation.
The new graph API does not support all the APIs that the old Instagram API supported. You cannot get images by hashtag and location and any user's posts, like you could with old APIs.
With new graph API you can only access your photos and your insights and comments.
No hashtag posts, other user posts, location posts or follower lists.
I am going to do instagram ads agency. But I don't know that if I have many clients, how can I link more than one Instagram account to my business facebook page?
I used the app in the link. It does work and helps. http://www.digitaltrends.com/social-media/how-to-manage-multiple-instagram-accounts/
I tried to find an answer without success.
I have an website that will show all twitter tweets and instagram posts based in a hashtag.
In twitter I authenticated userless, since I just wanted to show all tweets from a hashtag.
The problem is with Instagram, I already signed and I'm retrieving posts with:
https://api.instagram.com/v1/tags/{tag}/media/recent?access_token=xxx
But the thing is that it only retrieves tags from my posts, instead I want it to search in the Instagram universe.
Is it possible?
It does retrieve the instagram posts (all the posts in instagram provided the privacy of the post is set to public). I have successfully did it in my open source Instagram Hashtag Feed App on Windows Store Application (C#). It works exactly like searching in instagram with a hashtag.
https://github.com/ShiChuanTaylors/InstaFeed/blob/master/OrientationFeed/InstagramFeed.xaml.cs
Hope the code can help. :)
Can I get likes by specific user using Instagram API? I saw this in Windows Phone app, but I can't find it in API docs.
Is it possible?
If I understand this correctly, you wish to get the most recently liked photos of a particular user.
This can be done using the Instagram API - but only when that particular user has authenticated your app.
You can use the following endpoint:
GET /users/self/media/liked
Here the API call would be :
https://api.instagram.com/v1/users/self/media/liked?access_token=ACCESS-TOKEN
This will give you the list of recent media liked by the owner of the ACCESS-TOKEN.
More details on the Instagram API here :
https://www.instagram.com/developer/endpoints/users/#get_users_feed_liked
Unfortunately no, you can't.
This feature is only available on the Instagram app following this steps
To view the 300 most-recent posts you've liked, go to your account
settings in the app and then tap Posts You've Liked. You won't be able
to view posts you've liked on the web.