简体   繁体   English

DocusignAPI SOAP 通过 Post,不使用任何 SDK

[英]DocusignAPI SOAP via Post, NOT using any SDKs

We are developing for one of your customers a method from our application (written exclusively in LiveCode Script) and need to utilise SOAP via a POST command directly from LiveCode.我们正在为您的一位客户开发我们应用程序中的一种方法(专门用 LiveCode 脚本编写),并且需要通过 POST 命令直接从 LiveCode 使用 SOAP。 I eventually, after a lot of digging into the resources pages, found some reference on how to Post 'CreateAndSendEnvelope' from here:在对资源页面进行了大量挖掘之后,我最终找到了一些关于如何从此处发布“CreateAndSendEnvelope”的参考:

CreateAndSendSchema 创建和发送模式

However, it does not show where to place login credentials for the user or company or whatever so that it is attributed to the correct account.但是,它没有显示在哪里放置用户或公司的登录凭据或其他任何内容,以便将其归因于正确的帐户。

I found this question here which kind of points me in the right direction, but do you not have any specific documentation on how to set up your headers and body when using XML for both authenticating and sending a document via email using SOAP?我在这里找到了这个问题,哪一种为我指明了正确的方向,但是在使用 XML 进行身份验证和使用 SOAP 通过电子邮件发送文档时,您是否没有任何关于如何设置标头和正文的具体文档?

Providing a simple guide demonstrating the header required and the basic XML to POST to send a document with tags for signing to a single recipient by email using a senders user credentials would be perfect.提供一个简单的指南来演示所需的标头和基本的 POST 的 XML,以使用发件人用户凭据通过电子邮件发送带有标记的文档给单个收件人,这将是完美的。

Thanks谢谢

Sean.肖恩。

Pi Digital Productions Ltd派数码制作有限公司

SOAP is still using what we call "Legacy Auth" which is the older, less secure, (not OAUTH) authentication. SOAP 仍在使用我们所说的“Legacy Auth”,这是较旧的、安全性较低的(非 OAUTH)身份验证。 To use that, you still need an IK (Integration Key) but you provide the username, password and IK in clear text inside a header called X-DocuSign-Authentication that looks like this:要使用它,您仍然需要一个 IK(集成密钥),但您在名为 X-DocuSign-Authentication 的标头中以明文形式提供用户名、密码和 IK,如下所示:

'X-DocuSign-Authentication: { "Username":"DocuSign@example.com",  "Password":"DocuSign_password",  "IntegratorKey":"DocuSign_Integrator_Key" }' 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM