Instagram\API\Framework\Response::getContentDispositionFilename PHP Method

getContentDispositionFilename() public method

    public function getContentDispositionFilename()
    {
        $headers = $this->getHeaders();
        parse_str($headers["Content-Disposition"], $results);
        return $results["attachment;filename"];
    }