Hi There, I have a custom code site. On one of the pages we would like to show instagram photos with a particular hashtag. Does Instagram allow that or I will have to get some special widgets?
Try this, not sure if it works, I don't use instagram https://medium.com/@griffin.an90/the-way-to-embed-instagram-feed-on-your-website-6c242b1aa046
It can be implemented by a custom PHP script that: Downloads web page https://www.instagram.com/explore/tags/hashtag/ (via Curl etc.) Extracts "window._sharedData" JS variable value After json_decode you will have the list of images with their properties in $arr['entry_data']['TagPage'][0]['graphql']['hashtag']['edge_hashtag_to_media']['edges'] ? PROFIT P.S. Do not forget to implement caching to prevent IP ban.
There is a free native way, but uses Instagram API https://www.instagram.com/developer/ On that page there is a question, I am using legacy API to display my feed, can I do that with new graph API. Answer of that question explains how you can display the feed of your account.
Check once this .... You can customize your own code to get instagram feeds to your website for free. https :// www. codeofaninja. com/2015/01/display-instagram-feed-website.html
I am using the Instagram API and Java Servlet technology to demonstrate my feed as a custom solution on one of my site's product pages. see qisoftware.com/sol/s11.html. Woobox offers commercial solutions. I use a free Instagram widget tool for my personal blog, however there are several restrictions using the service. One may upgrade to a non-free solution which based on the research I have done - is the only solution other than development of a custom interface to pull your feed in the manner you want. Q...