Esempio n. 1
0
<?php

ini_set('display_errors', true);
error_reporting(E_ALL);
require_once 'Instagram-Grabber/vendor/autoload.php';
header('content-type:json');
header('Access-Control-Allow-Origin:*');
$media = Bolandish\Instagram::getMediaByHashtag("bforbathel", 350);
$media2 = Bolandish\Instagram::getMediaByHashtag("nolawedding", 100);
foreach ($media as $bforbathel) {
    array_push($media2, $bforbathel);
}
/*echo "<pre>";
echo var_dump(($media));
echo "</pre>";*/
foreach ($media2 as $row) {
    $images[] = array('src' => $row->display_src, 'height' => $row->dimensions->height, 'width' => $row->dimensions->width);
}
echo json_encode($images);
Esempio n. 2
0
<?php

require_once __DIR__ . '/../vendor/autoload.php';
//Its getting 10 images/videoes from instagram with the hastag #nofilter
$media = Bolandish\Instagram::getMediaByHashtag("nofilter", 10);
//Its getting 10 images/videoes from Selena Gomezs instagram.. mmhh..
$media = Bolandish\Instagram::getMediaByUserID(460563723, 10);
//Get 10 images/videos after the media with the id 1060728019300790746 from Selena Gomex
$media = Bolandish\Instagram::getMediaAfterByUserID(460563723, 1060728019300790746, 10);
//Its getting 10 last comments under Selena Gomezs photo
$media = Bolandish\Instagram::getCommentsByMediaShortcode("BGQh8XmOjLM", 10);
//Get 10 comments before the comment with the id 17862588298017953 under Selena Gomezs photo
$media = Bolandish\Instagram::getCommentsBeforeByMediaShortcode("BGQh8XmOjLM", 17862588298017953, 10);
//Display square images only
$media = Bolandish\Instagram::getMediaByHashtag("wildlife", 20);
foreach ($media as $value) {
    if ($value->dimensions->width === $value->dimensions->height) {
        echo '<img src="' . $value->display_src . '" alt="' . $value->caption . '" />';
    }
}
//Make images clickable and link to instagram post
foreach ($media as $key => $value) {
    if ($value->dimensions->width === $value->dimensions->height) {
        echo '<a href="' . 'https://www.instagram.com/p/' . $media[$key]->code . '" target="_blank"><img src="' . $media[$key]->display_src . '" alt="' . $media[$key]->caption . '" /></a>';
    }
}