/**
  * Get the images in the feed of the logged in person
  * @param string $accessToken
  * @param int $count
  * @return Object
  */
 public static function getSelfFeed($accessToken, $count)
 {
     $InstaUsers = new InstaUsers($accessToken);
     $result = $InstaUsers->getSelfFeed($count);
     $images = json_decode($result);
     return $images;
 }