PHP Classes

File: myfeed.php

Recommend this page to a friend!
  Classes of Yasir Siddiqui   Instagram API integration with PHP   myfeed.php   Download  
File: myfeed.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Instagram API integration with PHP
Access an Instagram user account with its API
Author: By
Last change: Update of myfeed.php
Date: 2 months ago
Size: 1,480 bytes
 

Contents

Class file image Download
<?php
session_start
();

if (!isset(
$_SESSION['AccessToken'])) {
   
header('Location: redirect.php?op=getauth');
    die();
}

require_once
'Class.Instagram.php';

$instgram = new Instagram();
$userfeed = json_decode($instgram->getUserFeed(20));

include_once
'header.php';
include_once
'leftmenu.php';
?>

<div id="content">
<div id="content_top"></div>
<div id="content_main">
<?php
foreach ($userfeed->data as $feeddata) {

?>

        <h2>&nbsp; </h2>
        <p>&nbsp;</p>
           <h3><img src="<?php echo $feeddata->user->profile_picture; ?>" width="60" height="60" caption="Profile Image">&nbsp;&nbsp;<?php echo $feeddata->user->username; ?> </h3>
           <br><img src="<?php echo $feeddata->images->low_resolution->url; ?>" width="<?php echo $feeddata->images->low_resolution->width; ?>" height="<?php echo $feeddata->images->low_resolution->height; ?>" caption="Feed Image" >
        <p>&nbsp;</p>
        <p><strong>Caption: </strong><?php echo @$feeddata->caption->text; ?></p>
        <p><strong>Comments: </strong><br>
        <?php
       
foreach ($feeddata->comments->data as $commentsdata) {

            echo
"<strong>".$commentsdata->from->username.":</strong> ". $commentsdata->text."<br>";
        }
       
        
?></p>
        <p>&nbsp;</p>
           
       
<?php
}

if(
count($userfeed->data)==0) {

    echo
"<h2>No Data Available In Your Feed.</h2>";
}

?>
</div>

<?php
include_once 'footer.php';
?>