- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我正在实现客户资料。我几乎一字不差地从示例中获取了代码。当我尝试创建客户资料时,它提示缺少一个字段,但没有指定是哪个字段。怎么了?
https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile
payment_profiles_controller.rb
def create
@payment_profile = ::PaymentProfile.new pp_params # my model, not theirs
unless @payment_profile.valid?
flash.now.alert = @payment_profile.errors.full_messages.join(', ')
render :new and return
end
# create authorize.net customer profile
if Rails.env == 'production'
transaction = Transaction.new(ENV['AUTHORIZENET_LOGIN_ID'], ENV['AUTHORIZENET_TRANSACTION_KEY'], :gateway => :production)
else
transaction = Transaction.new(ENV['AUTHORIZENET_LOGIN_ID'], ENV['AUTHORIZENET_TRANSACTION_KEY'], :gateway => :sandbox)
end
# Build the payment object
payment = PaymentType.new(CreditCardType.new)
payment.creditCard.cardNumber = pp_params[:card_number]
payment.creditCard.expirationDate = pp_params[:expiration_date]
# Build an address object
billTo = CustomerAddressType.new
billTo.firstName = pp_params[:first_name]
billTo.lastName = pp_params[:last_name]
billTo.company = pp_params[:company]
billTo.phoneNumber = pp_params[:phone]
billTo.address = pp_params[:address]
billTo.city = pp_params[:city]
billTo.state = pp_params[:state]
billTo.zip = pp_params[:zip]
billTo.country = pp_params[:country]
# Use the previously defined payment and billTo objects to
# build a payment profile to send with the request
paymentProfile = CustomerPaymentProfileType.new
paymentProfile.customerType = 'business'
paymentProfile.payment = payment
paymentProfile.billTo = billTo
paymentProfile.defaultPaymentProfile = true
# Build the request object
request = CreateCustomerProfileRequest.new
# Build the profile object containing the main information about the customer profile
request.profile = CustomerProfileType.new
request.profile.merchantCustomerId = @user.id
request.profile.email = @user.email
# Add the payment profile and shipping profile defined previously
request.profile.paymentProfiles = [paymentProfile]
request.validationMode = ValidationModeEnum::LiveMode
response = transaction.create_customer_profile(request)
if response != nil
byebug
puts response.messages.resultCode
if response.messages.resultCode == MessageTypeEnum::Ok
puts "Successfully created a customer profile with id: #{response.customerProfileId}"
puts " Customer Payment Profile Id List:"
response.customerPaymentProfileIdList.numericString.each do |id|
puts " #{id}"
end
puts " Customer Shipping Address Id List:"
response.customerShippingAddressIdList.numericString.each do |id|
puts " #{id}"
end
puts
@subscription.create_authorizenet user: @user, customer_profile_id: response.customerProfileId, customer_payment_profile_id: response.customerPaymentProfileIdList.numericString.first
redirect_to dashboard_path, notice: 'Customer payment profile saved.'
else
puts response.messages.messages[0].code
puts response.messages.messages[0].text
flash.now.alert = "Failed to create a new customer profile: #{response.messages.messages[0].code} #{response.messages.messages[0].text}"
render :new
end
else
puts "Response is null"
flash.now.alert = "Failed to create a new customer profile."
render :new
end
end
Started POST "/users/1/subscription/payment_profile" for 127.0.0.1 at 2018-03-12 22:02:32 -0400
Processing by PaymentProfilesController#create as HTML
Parameters: {"utf8"=>"√", "authenticity_token"=>"HsKjEiR6ulTSPN0GzwfmAa2bG1LV6Lixp8TW4lNcJZVlxPP1v/46GAr7NGqdjQ47eV20ZWWDVjsf1TwpsfaRhQ==", "payment_profile"=>{"card_number"=>"4111111111111111", "expiration_date"=>"2018-11", "first_name"=>"Sue", "last_name"=>"D. Nym", "company"=>"Acme Corp.", "phone"=>"212-222-3333", "address"=>"2 Wall St.", "city"=>"New York", "state"=>"NY", "country"=>"United States"}, "commit"=>"Save", "user_id"=>"1"}
...
(byebug) response.messages
#<AuthorizeNet::API::MessagesType:0x000000102e5a08 @resultCode="Error", @messages=[#<AuthorizeNet::API::MessagesType::Message:0x000000102bd148 @code="E00027", @text="There is one or more missing or invalid required fields.", @roxml_references=[#<ROXML::XMLTextRef:0x000000102bd030 @opts=#<ROXML::Definition:0x000000066e5d88 @default=nil, @to_xml=nil, @name_explicit=false, @cdata=nil, @required=nil, @frozen=nil, @wrapper=nil, @namespace=nil, @accessor="code", @array=false, @blocks=[], @sought_type=:text, @attr_name="code", @name="code">, @instance=#<AuthorizeNet::API::MessagesType::Message:0x000000102bd148 ...>, @default_namespace="xmlns">, #<ROXML::XMLTextRef:0x000000102bd008 @opts=#<ROXML::Definition:0x000000066e5540 @default=nil, @to_xml=nil, @name_explicit=false, @cdata=nil, @required=nil, @frozen=nil, @wrapper=nil, @namespace=nil, @accessor="text", @array=false, @blocks=[], @sought_type=:text, @attr_name="text", @name="text">, @instance=#<AuthorizeNet::API::MessagesType::Message:0x000000102bd148 ...>, @default_namespace="xmlns">]>], @roxml_references=[#<ROXML::XMLTextRef:0x000000102e5760 @opts=#<ROXML::Definition:0x000000066e4ac8 @default=nil, @to_xml=nil, @name_explicit=false, @cdata=nil, @required=nil, @frozen=nil, @wrapper=nil, @namespace=nil, @accessor="resultCode", @array=false, @blocks=[], @sought_type=:text, @attr_name="resultCode", @name="resultCode">, @instance=#<AuthorizeNet::API::MessagesType:0x000000102e5a08 ...>, @default_namespace="xmlns">, #<ROXML::XMLObjectRef:0x000000102e5738 @opts=#<ROXML::Definition:0x00000008cc7fb0 @default=nil, @to_xml=nil, @name_explicit=false, @cdata=nil, @required=nil, @frozen=nil, @wrapper=nil, @namespace=nil, @accessor="messages", @array=true, @blocks=[], @sought_type=AuthorizeNet::API::MessagesType::Message, @attr_name="messages", @name="message">, @instance=#<AuthorizeNet::API::MessagesType:0x000000102e5a08 ...>, @default_namespace="xmlns">]>
(byebug) response.messages.messages.length
1
(byebug) c
Error
E00027
There is one or more missing or invalid required fields.
最佳答案
我发现 View 中缺少邮政编码。
.form-group
=f.label :zip
=f.text_field :zip, class: 'form-control'
我希望它能告诉我。
关于ruby-on-rails - Authorize.net: "There is one or more missing or invalid required fields."但它没有说明丢失或无效的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49247456/
我在 Ubuntu 10.04 LTS 上运行 Eclipse Galileo。今天 Ubuntu 在我身上崩溃了,重新启动后,我发现 Eclipse 已经完全失去了 Java Perspective
我使用配置了 sonata_user 的 SonataAdminBundle在 config.yml : sonata_user: impersonating: route:
我有 ubuntu 14.04 但它不见了 docker exec sudo docker exec -it ubuntu_bash bash 我希望在现有正在运行的 docker 容器中运行交互式
我正在使用 Ubuntu 8.04/32 位(作为虚拟机)。在一个不是 min 的项目上执行一些 make 时,我得到了错误: g++:/usr/lib/libstdc++.a: 没有这样的文件或目录
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许在 Stack Overflow 上提出有关通用计算硬件和软件的问题。您可以编辑问题,使其成为
我正在尝试获取有关我在 UIImagePicker 中选择的视频的一些数据。 因此,当它进入 UIImagePicker 委托(delegate)方法(如下)时,我知道我需要使用信息字典中的 UIIm
我的网站最近被可能的黑客行为删除了。我上传了备份的文件夹和数据库,但现在我的 View 没有显示。其他一切都有效。我想不出有什么变化,只是上传了几天前的备份。 这些字段在 admin/build/vi
我执行以下操作来设置我的 session ,这是有效的,因为 echo 出现了。但是当我转到下一页或另一页时, session 不存在吗?我做错了什么? $session_start(); if ($
我试图在 BigQuery 中使用这段代码,显然是从 GA 中获取数据,但 _TABLE_SUFFIX 似乎有问题。错误显示“错误:无法识别的名称:_TABLE_SUFFIX at [12:3]”您能
输入:8(2 5 6 9 10 2 7 4)预期输出:(2 7 9 9 12 5 7 6)实际输出:(2 7 9 9) 这是我的大学作业,也是我第一次在这里提问。我不知道为什么,但 10 没有扫描,有
$('div'); // 我在上面的代码中遇到错误。在检查 .js 代码时,我找不到名为 $ 的函数,但根据文档,应该有一个。 最佳答案 试试 http://ajax.googleapis.co
以下简单代码的输出对我来说有点奇怪。它错过了在控制台上打印的 0 到 100 之间的一些数字。 谁能解释一下为什么省略打印?我对并发编程完全陌生。 import java.util.concurren
我正在学习 xamarin 以构建移动应用程序,但我对 Xamarin 和移动应用程序一无所知。我打开了一个空白的移动应用程序,其中有“Hello world”示例并编辑了一些文本,但我的应用程序图标
我正在将一些值存储到 sqlite 数据库中。因此,数据是作为字符串从文本字段收集的,然后转换为 double 并持久化。 这是我试过的 NSDecimalNumber 答案; value.answe
我有一个奇怪的案例。突然,其中一个表中的一些记录(这么多记录)丢失了。首先,我认为这是由我的 PHP 脚本中的错误引起的。但是,我检查了一下,我的脚本中没有DELETE操作,只有UPDATE。有谁知道
我正在复制 NSString来自 NSDictionary进入本地NSString使用 [[NSString alloc] initWithString:] ,对其进行处理(删除一些字符),然后将其发
当保存在根文件夹中时,我的非常基本的 html 页面保持样式。为一个组创建了一个新文件夹,但是当我将页面移动到该文件夹时,它们似乎失去了与 css 文件的连接。 认为问题可能出在链接上,因为它现在
我需要使用 OpenCV 训练一些图像。但问题是,我找不到 opencv_createsamples 程序。我以正常方式安装了 OpenCV,因为我使用的是 Windows 7。这个 opencv_c
我有一个绑定(bind)到 JTable 的 ArrayList。之后 bindingGroup.unbind(); bindingGroup.bind(); (完成刷新数据)我丢失了表格单元格渲
所以基本上我们只是丢失了一个 keystore 和备份 keystore 。但是我们可能知道原始 keystore 的密码。 我的问题是,如果我们知道原始 keystore 的密码,我们可以重新生成
我是一名优秀的程序员,十分优秀!