我正在使用docusign API和PHP构建应用程序。除了我无法弄清楚如何下载文档之外,我的大部分工作都在进行中。我一直在这个网站和Docusign网站上搜索。 Docusign有一个example here,它显示了如何在PHP中获取文档列表,但下载没有PHP示例。在Docusign REST API文档中,他们解释了method here。但这表示回复是“PDF文件”。
在下面的示例代码中,我尝试将内容放入文件中,但它会创建并清空文件。如果我print_r($ data),我明白了:
SplFileObject Object
(
[pathName:SplFileInfo:private] => /tmp/419ULk
[fileName:SplFileInfo:private] => 419ULk
[openMode:SplFileObject:private] => w
[delimiter:SplFileObject:private] => ,
[enclosure:SplFileObject:private] => "
)
它确实在/ tmp中创建了文件,但我希望将文档保存在字符串中,以便发送或保存到DB。
这是我的控制器功能:
public function get_document($envelopeId, $cert = FALSE)
{
$save_dir = BASEPATH."../documents/";
if ($envelopeId) {
$this->load->model('docusign_model');
$data = $this->docusign_model->get_document($envelopeId, $cert);
}
file_put_contents($save_dir.$envelopeId.".pdf", $data);
//print_r($data);
die("116");
}
这是在docusign_model:
public function get_document($envelopeId, $cert)
{
$docuSignAuth = $this->auth();
if ($docuSignAuth) {
$envelopeApi = new EnvelopesApi($docuSignAuth->apiClient);
$options = new GetDocumentOptions();
if($cert) {
$options->setCertificate(TRUE);
} else {
$options->setCertificate(FALSE);
}
return $envelopeApi->getDocument($docuSignAuth->accountId, 1, $envelopeId, $options);
}
return false;
}
如何获取此文档并将其保存在字符串中?
非常感谢任何和所有帮助!
答案 0 :(得分:5)
内容以文件形式返回,您必须读取临时文件并将其保存到所需文件
使用file_get_contents
和file_put_contents
$docStream = $envelopeApi->getDocument($accountId, 1, $envelopeId);
file_put_contents("my_document.pdf", file_get_contents($docStream->getPathname()));
DocuSign REST API :: EnvelopeDocuments: get 将单个文档另存为PDF文件