Collect instagram tag images for website

Asked

Viewed 2,146 times

2

Good night! I would like to create something like what you can see at the bottom of this page: http://www.theathletesfoot.com/

It presents all the photos that are being put with the tag #taflovessneakers and I would like to do the same for my website

Is it going to be a very complex job? I have some knowledge in webdevelopment but am not an expert. My website is in Magento if you help with something or if you know of an existing extension or if it saves you some work.

Thanks in advance!

3 answers

1

I also wanted to add a widget fairly simple as a solution: Lightwidget. It’s free (but only recharges new Instagram images once a day :)).

For example, to display the tag photos #taflovessneakers that you mentioned, just add the following tags to your HTML:

<!-- LightWidget WIDGET -->
<script src="//lightwidget.com/widgets/lightwidget.js"></script>
<iframe
src="//lightwidget.com/widgets/2f723c7e79095904a47b5f9b0b889bd1.html"
id="lightwidget_2f723c7e79"
name="lightwidget_2f723c7e79"
scrolling="no"
allowtransparency="true"
class="lightwidget-widget"
style="width: 100%; border: 0; overflow: hidden;"
>
</iframe>

0

First you will have to have the instagram url that returns a JSON file according to the tag you want, and for that you will have to generate a token. See more here https://instagram.com/developer/endpoints/tags/.

After you get your token, change your value here:

https://api.instagram.com/v1/tags/taflovessneakers/media/recent?access_token=ACCESS-TOKEN

Then just treat JSON.

  • I used this URL and only show my photos with HASHTAG, how do I get public photos? I want a list of all instagram photos with a specific hashtag...

0

Basically what you need is to access the API provided by instagram and assemble a block to display the photos. If you know how to handle an API, you will certainly not encounter many problems.

Below is a link to some free extensions already available for Magento:

https://www.magentocommerce.com/magento-connect/neklo-instagram-widget-v1-0-1.html https://www.magentocommerce.com/magento-connect/imagepicker-by-innobyte.html https://www.magentocommerce.com/magento-connect/all-in-one-social-feeds.html https://www.magentocommerce.com/magento-connect/websupreme-instagram-widget-1.html

To see the full list, including paid extensions, visit:

https://www.magentocommerce.com/magento-connect/catalogsearch/result/? id=&s=4&pl=0&Eb=0&hp=0&q=instagram&t=0&p=3

Browser other questions tagged

You are not signed in. Login or sign up in order to post.