Collect the instagram tag images for the site

2

Good evening! I would like to create something like what you can see at the bottom of this page: link

Show all the photos that are tagged #taflovessneakers and I would like to do the same for my website

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

Thank you in advance!

    
asked by anonymous 03.05.2015 / 01:32

3 answers

1

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

For example, to display the photos of the #taflovessneakers tag you mentioned, you would 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>
    
13.04.2016 / 01:21
0

First you will have to have the url of the instagram that returns a JSON file according to the tag you want, and for this you will have to generate a token. See more here link .

Once you get your token, change your value here:

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

Then just deal with JSON.

    
04.05.2015 / 17:02
0

Basically what you need is to access the API made available by instagram and mount a block to display the photos. If you know how to manipulate an API, you certainly will not find many problems.

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

link link link link

To see the full list, including paid extensions, go to:

link

    
10.03.2016 / 04:14