我是非常新的尝试将docusign与php集成我正在使用以下代码
$integratorKey = 'XXXX';
$email = 'mageshkumar.it@gmail.com';
$password = 'XXXX';
$name = "mageshkumar";
// copy the templateId of an existing template here
$templateId = "C9D9D181-CE57-.....................";
// construct the authentication header:
$header = "<DocuSignCredentials><Username>" . $email . "</Username><Password>" . $password . "</Password><IntegratorKey>" . $integratorKey . "</IntegratorKey></DocuSignCredentials>";
我想要的只有一件事是获取已获文件的状态更新。
答案 0 :(得分:0)
此代码肯定不完整,还没有完成一些基本的错误检查。显然,调用webservice不起作用,但它可能处于非常低的水平。例如,您的防火墙可能是问题,它与DocuSign Web服务无关。我建议您访问www.docusign.com/devcenter并尝试从您的机器上获取基于卷曲的示例。也许然后尝试从PHP ping一个公共网站。这只是连接101。
答案 1 :(得分:0)
我建议您研究设置回调网址,并跟踪自己数据库中的信封。我没有你的示例链接,也许@ergin或@mikebz可以发布一个。
否则,请看一下PHP API服务示例: