我正在使用Braintree的v2嵌入式ui android进行支付,我的后端服务器在node.Js中.我已经成功实现了付款部分,但是现在我需要存储卡的详细信息,并从存储的借记卡/xyk或贝宝帐户中自动扣除金额.
我正在生成客户端令牌并将该令牌存储在数据库中.使用该令牌,我生成了随机数.然后,我将现时值发送到后端服务器进行transaction.sale().
这是付款部分的代码片段
if (!TextUtils.isEmpty(braintreeClIEntToken)) { DropInRequest dropInRequest = new DropInRequest() .clIEntToken(braintreeClIEntToken); startActivityForResult(dropInRequest.getIntent(this), REQUEST_CODE);}
OnActivityResult
@OverrIDeprotected voID onActivityResult(int requestCode, int resultCode, Intent data) { if (requestCode == REQUEST_CODE) { if (resultCode == Activity.RESulT_OK) { DropInResult result = data.getParcelableExtra(DropInResult.EXTRA_DROP_IN_RESulT); PaymentMethodNonce paymentMethodNonce = result.getPaymentMethodNonce(); String nonce = ""; if (paymentMethodNonce != null) nonce = paymentMethodNonce.getNonce(); // use the result to update your UI and send the payment method nonce to your server if (!TextUtils.isEmpty(nonce)) { NonceRequest obj = new NonceRequest("ANDROID", "1", "DRIVER-SAVE-PAYMENT", "1", nonce); Call<NonceResponse> call = RestService.getInstance().restInterface.sendNoncetoServer(userID, userToken, obj); call.enqueue(new Callback<NonceResponse>() { @OverrIDe public voID onResponse(Call<NonceResponse> call, Response<NonceResponse> response) { } @OverrIDe public voID onFailure(Call<NonceResponse> call, Throwable t) { } }); } } else if (resultCode == Activity.RESulT_CANCELED) { // the user canceled } else { // handle errors here, an exception may be available in Exception error = (Exception) data.getSerializableExtra(DropInActivity.EXTRA_ERROR); } }}
有人能告诉我存储xyk/借记卡或贝宝帐户详细信息并从该存储的付款方式生成随机数的步骤吗?
解决方法:
全面披露:我在Braintree工作.如有其他疑问,请随时联系support
您要完成的大部分工作都是在服务器端进行更改.如果要存储卡,则可以传递到选项参数storeInVaultOnSuccess,该参数将成功保存该卡并使用该卡创建关联的客户.否则,您也可以将该随机数传递给PaymentMethod.Create呼叫.如果这些调用成功,将为这些卡创建令牌,然后您将可以重复使用这些令牌.基于您所说的事实,您想“自动扣除金额”,我想您可能想使用该令牌设置订阅.为此,您需要创建plan,它是控制面板中订阅的模板.然后,您想要使用创建的存储令牌实际创建subscription.如果您希望这些保存的卡显示在Drop-in中供客户选择,则需要将customer_id传递到ClIEntToken.generate调用中.这将允许客户从他们的列表中选择存储的卡,然后在Drop-in中重复使用.
总结以上是内存溢出为你收集整理的android-在Braintree中存储和检索借记卡和xyk详细信息全部内容,希望文章能够帮你解决android-在Braintree中存储和检索借记卡和xyk详细信息所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)