Código PHP:
espero me puedan colaborar gracias Ver original
<html> <head> <title></title> </head> <body> <div class="slideshow"></div> <!-- include jQuery library --> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <!-- include Cycle plugin --> <script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.all.latest.js"></script> <script type="text/javascript"> $(document).ready(function() { $('.slideshow').cycle({ fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc... }); }); </script> </body> </html> <script> $(function() { $.ajax({ type: "GET", dataType: "jsonp", cache: false, url: "https://api.instagram.com/v1/tags/servidigital/media/recent/?access_token=24988414.52ae04f.5016c86bb8f349d3819f9bf4f176dbe1", success: function(data) { for (var i = 0; i < 30; i++) { $(".slideshow").append("<img width='200' height='200' src='" + data.data[i].images.low_resolution.url +"' />"); } } }); }); </script>