Reputation: 769
I want to embed an Instagram feed to my website from my Instagram account but only include posts with a certain hashtag. I tried some 3rd party widgets but they only provide a feed with username or hashtag but not both. I registered for the Instagram API and registered a new client. I want to access:
https://api.instagram.com/v1/users/USER_ID/media/recent/?client_id=CLIENT_ID
The problem is that as long as I didn't start a submission, I cannot access the URL above. I cannot start a submission because when I choose I want to display my Instagram posts on my website
, I only get the option I do not need to submit for review for this use case
.
Any ideas how I will be able to integrate the feed with hashtag and my username on my website?
Upvotes: 3
Views: 10164
Reputation: 303
Your best bet would probably be to use something like http://instafeedjs.com/, it's a jQuery plugin that lets you select a user and filter by hashtags. Unfortunately if you were looking to filter multiple hashtags you'll run into trouble because the Instagram API only allows for 1 hashtag at a time.
Upvotes: 2