0

不知道从哪里开始故障排除。我在update_attributes. 这是我从某人那里接手的应用程序,我什至不完全确定语法,所以任何帮助将不胜感激!我将这个gem 用于 HelloSign API。

class SignatureRequest
  include ActionView::Helpers::NumberHelper
  include Mongoid::Document
  embedded_in :application

  field :hello_sign_id
  field :signing_url
  field :details_url

    response = HelloSign.signature_request.deliver(form: FORM_ID) do |request|
          request.title         = "#{borrower.last_name} Loan Application"
          request.subject       = "blah"
          request.message       = "blah."
        end
        update_attributes(
          hello_sign_id: response[:signature_request][:signature_request_id],
          signing_url: response[:signature_request][:signing_url],
          details_url: response[:signature_request][:details_url]
        )
        response
4

1 回答 1

0

HelloSign 开发人员在这里 - 自从提出这个问题以来,我们已经发布了一个官方的 Ruby SDK。我们非常感谢开发人员对第三方库的热情,就像您尝试使用的库一样(尤其是当我们还没有发布某些语言的官方 SDK 时),但是现在最好的办法是使用我们的官方库,如果可用的。它们应该始终是最新的,更重要的是,当您遇到困难时,我们可以帮助您。

在 Github 上尝试一下。

https://github.com/HelloFax/hellosign-ruby-sdk

于 2014-08-01T17:41:39.053 回答