seregazhuk\PinterestBot\Api\Request::makeHeadersForUpload PHP 메소드

makeHeadersForUpload() 보호된 메소드

protected makeHeadersForUpload ( ) : array
리턴 array
    protected function makeHeadersForUpload()
    {
        $delimiter = '-------------' . uniqid();
        $this->buildFilePostData($delimiter);
        return ['Content-Type: multipart/form-data; boundary=' . $delimiter, 'Content-Length: ' . strlen($this->postFileData)];
    }