PHP Classes

File: mypublications.php

Recommend this page to a friend!
  Classes of Yasir Siddiqui   Instagram API integration with PHP   mypublications.php   Download  
File: mypublications.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 mypublications.php
Date: 2 months ago
Size: 1,433 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();
$userpublications = json_decode($instgram->getUserPublications(5));

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

<div id="content">
<div id="content_top"></div>
<div id="content_main">
<?php
foreach ($userpublications->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($userpublications->data)==0) {

    echo
"<h2>No Data Available In Your Publications.</h2>";
}
?>
</div>

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