问题
I'm using braintree for payment processing and I'm trying to get Processor Response Codes from Braintree with Ruby.
Here is my code :
verification = result.credit_card_verification
response_code = verification.try(:processor_response_code)
I'm getting verification as nil even when there is error.
Is there something else to get Processor Response Codes?
I got this code from here
Here is my result.erros :
:errors: !ruby/object:Braintree::Errors
errors: !ruby/object:Braintree::ValidationErrorCollection
errors: []
nested:
:customer: !ruby/object:Braintree::ValidationErrorCollection
errors: []
nested:
:credit_card: !ruby/object:Braintree::ValidationErrorCollection
errors:
- !ruby/object:Braintree::ValidationError
code: '81707'
attribute: cvv
message: CVV must be 4 digits for American Express and 3 digits for
other card types.
- !ruby/object:Braintree::ValidationError
code: '81713'
attribute: expiration_year
message: Expiration year is invalid.
- !ruby/object:Braintree::ValidationError
code: '81703'
attribute: number
message: Credit card type is not accepted by this merchant account.
- !ruby/object:Braintree::ValidationError
code: '81715'
attribute: number
message: Credit card number is invalid.
nested:
:billing_address: !ruby/object:Braintree::ValidationErrorCollection
errors: []
nested: {}
回答1:
I work at Braintree. If you'd like more help than you can get here on Stack Overflow, please reach out to our support team.
Handling Braintree result objects is progressive.
If result.success?
is false
, then you check for result.errors
, which represent validation errors.
If result.errors
is nil
, then the request was valid. In this case, you will have a transaction
or verification
object just as if result.success?
was true
.
You can then look at the result.verification
's status
, processor_response_code
, gateway_rejection_reason
, etc.
The linked documentation provides more details on handling error results.
来源:https://stackoverflow.com/questions/19413961/result-credit-card-verification-is-returning-nil-even-on-error-in-braintree