Inheritance: extends Instagram\API\Framework\Request
 /**
  * @param $instagram Instagram The Instagram instance to make the Request with.
  */
 public function __construct($instagram)
 {
     parent::__construct($instagram);
     foreach ($instagram->getCookies() as $key => $value) {
         $this->addCookie($key, $value);
     }
 }
 /**
  * @return LoginResponse
  */
 public function execute()
 {
     return parent::execute();
 }