Instagram\API\Framework\Response::getContentDispositionFilename PHP 메소드

getContentDispositionFilename() 공개 메소드

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