Jump to content

Recommended Posts

Posted

Represents the instagram feed of a user.

Instructions:

  1. Register a new instagram Client: at instagram. It's really important to add the current url as redirect url. (For example "http://page.dev/processwire/module/edit?name=InstagramFeed/").
  2. Complete module settings (Client ID and Secret), leaving the access input token field empty. This value will be generated.
  3. Click the "get Access Token" link to generate code and access token in module settings.
  4. Configure username to output feed from (default setting is "self":  to get the most recent media published by the owner of the access token)
  5. ... and use it!

detailed instructions at github

  • Like 14
  • Thanks 1
Posted

Hey this looks great! I have one recommendation that you might want to consider, I didn't see anything that caches the json array that you get back. I had an issue with a site a while back where periodically due to the server having to make a round trip to the instagram api every load the rest of the page would hang a bit. Not really an issue if you are using something like procache, but maybe a cache option might be a good idea for a configurable option . Just a thought. :)

  • Like 1
Posted

@MuchDev: Thanks, this is really a good hint.  Do you have any suggestions how best to tackle this issue?  ;)

Posted

Yeah good point there is that too. I think why I used that was in debugging, having direct access to the file made it easier to just delete it and have it re-cache, also I got to play around with some bare metal php.

Posted

My first site with PW has an Instagram feed coded in the most horrible way haha, just like, plugged in from everywhere because I didn´t understand much of PW modules (I think I still don´t haha).

I did resolve the caching issue just by saving the response in a file (though using file_put_content and stuff like that, no fancy PW functionalities, not even saving it inside the cache folder!!) , and also managed to make an ajax call to keep calling more images with the pagination API (that would be really nice to have in the module also!). With each new call, I updated the cache file list of image data and substituted the next pagination id.

Some of my doubs is if suddenly a big cache file could turn troublesome and also I don´t really get how you could call a module function from an AJAX call, like, do you use an URL?

Anyway, thanks for this nice module!

Posted

Thanks for all your input! I decided to use the built-in WireCache functionality.

v0.0.2

(module settings)

Cache Expire: By default a cache lasts for one day but you can select another lifetime:

  • ... hourly, daily, weekly, monthly
  • ... never, to prevent expiration
  • ... save, to expire when any page or template is saved
  • by clicking the link below all module caches will be deleted
 
  • Like 4
Posted

THANKS!

Tried it and seem to be getting strange results, sometimes the images appear and sometimes not - bottom of this page: http://www.benbyford.com/about/

Is there a problem with Instagram connection or caching or something?

<?php
    $feed = $modules->get('InstagramFeed')->getRecentMedia();
    foreach ($feed as $image): ?>
        <a href="<?=$image['link']; ?>" class="instagram-item">
            <img src="<?=$image['images']['thumbnail']['url']; ?>" alt="">
        </a>
        <div class="hidden">
        </div>
    <?php endforeach; ?>
Posted

@benbyf: which ProcessWire version are you using? What’s your cache setting in module settings? What happens if you disable caching (set it to “now”). If caching is enabled, have a look at your database table caches. There should be an entry named module.instagramfeed-recentmedia. Is the depending “data” field filled? There should be json including your requested images.

Posted

it's strange as it worked then didnt.

no template cache, module cache set to "never" (couldnt see "now" as an option)

Posted

Which ProcessWire version are you using? Have a look at your database table caches. There should be an entry named module.instagramfeed-recentmedia. Is the depending “data” field filled? There should be json including your requested images.

Have a look at the ProcessWire error log, if something went wrong while authentification / receiving access token there should be an entry. 

In your instagram client settings, did you activate "Enforce signed requests" (this checkbox must be unchecked!). 

In module settings is there an access token?

Clear the cache for this module in module settings.

Make sure you have the username spelled correctly or leave it empty (default: self).

I receive your media without any problem:

post-2759-0-34846100-1444628970_thumb.pn

  • 1 month later...
Posted

I added this endpoint, could you please pull develop branch and test it? 

Get a list of recently tagged media
  • getRecentMediaByTag($tagname)
<?php $feed = $modules->get('InstagramFeed')->getRecentMediaByTag('processwire'); ?>

post-2759-0-58186600-1449818035_thumb.pn

  • Like 2
Posted

whats the intagram strategy, its like they're locking it down more and more with the new approval process and new sandbox mode. https://www.instagram.com/developer/sandbox/

also do you create one client, or multiple clients - new one for each site? If multiple its almost impossible to do as each time you have to setup, submit to approve with instagram (including a step that asks you to submit a video of how your using instagram...) and wait.

:( boo instagram boo!

  • 1 month later...
Posted

Hello, 

is it possible to set more than one hashtag and set limit for the page ?  My idea is to inegrate it in a blog. and only e.G. 4 last pics with hashtags should be visible on the current post.

maybe something like

<?php $feed = $modules->get('InstagramFeed')->getRecentMediaByTag('processwire, cms'); ?> 

Thanks  

Posted

whats the intagram strategy, its like they're locking it down more and more with the new approval process and new sandbox mode. https://www.instagram.com/developer/sandbox/

also do you create one client, or multiple clients - new one for each site? If multiple its almost impossible to do as each time you have to setup, submit to approve with instagram (including a step that asks you to submit a video of how your using instagram...) and wait.

:( boo instagram boo!

this still the case or am i missing something?

Posted

this still the case or am i missing something?

I have to say that I personally don't use instagram. I just created an account to develop this module which I needed for a client project.  :P

  • 2 months later...
Posted

First of all, great plugin!

Two questions:

— Is there a way to update the cache every 60 seconds?

— Is it possible to access the "high_resolution" endpoints, even though they aren't already implemented in instagram API (files are there but not implemented)?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...