1

我正在使用你好标志。

你能弄清楚问题出在哪里吗?我搜索了很多,但没有找到相同的。

 [HttpPost]
    public ActionResult SendDocument(SendDocumentForm Form)
    {
        if (!ModelState.IsValid)
        {
            SendDocumentFormViewModel model = new SendDocumentFormViewModel();
            model.Form = Form;
            return View(model);
        }

        var client = new Client(HelloSignAPIKey);
        var request = new SignatureRequest();
        request.Subject = Form.Subject;
        request.Message = Form.Message;
        request.AddSigner(Form.SignerEmail, Form.SignerName);
        byte[] arreglo = new byte[Form.File.ContentLength];
        Form.File.InputStream.Read(arreglo, 0, Form.File.ContentLength);
        request.AddFile(arreglo, Form.File.FileName);
        request.TestMode = true;
        var response = client.CreateEmbeddedSignatureRequest(request, HelloSignClientID);
        var urlSign = client.GetSignUrl(response.Signatures[0].SignatureId);
        return RedirectToAction("Sign", new { url = urlSign.SignUrl });
    }

这是错误消息

4

1 回答 1

0

您似乎无法加载 HelloSign C# SDK。

至于您的错误:无法从程序集“HelloSign,Version=1.0.0.0,Culture=neutral,PublicKeyToken=null”加载类型“HelloSign.Client”。

看起来 SDK 没有正确加载。 https://github.com/HelloFax/hellosign-dotnet-sdk

尝试对 HelloSign API http://restsharp.org/进行直接 RestSharp 调用

于 2018-06-21T01:48:48.467 回答