android-Google钱包,商家帐户和沙箱

android-Google钱包,商家帐户和沙箱,第1张

概述索取完整钱包:FullWalletRequestfullWalletRequest=FullWalletRequest.newBuilder().setGoogleTransactionId(googleTransactionId).setCart(Cart.newBuilder().setCurrencyCode(Constants.CURRENCY_CODE_USD).setTotalPrice(toDollars(contex

索取完整钱包:

    FullWalletRequest fullWalletRequest = FullWalletRequest.newBuilder()  .setGoogleTransactionID(GoogleTransactionID)  .setCart(Cart.newBuilder()          .setCurrencyCode(Constants.CURRENCY_CODE_USD)          .setTotalPrice(todollars(context, itemInfo.getTotalPrice()))          .addlineItem(lineItem.newBuilder()                  .setCurrencyCode(Constants.CURRENCY_CODE_USD)                  .setDescription(itemInfo.name)                  .setQuantity("1")                  .setUnitPrice(todollars(context, itemInfo.priceMicros))                  .setTotalPrice(todollars(context, itemInfo.priceMicros))                  .build())          .addlineItem(lineItem.newBuilder()                  .setCurrencyCode(Constants.CURRENCY_CODE_USD)                  .setDescription(Constants.DESCRIPTION_liNE_ITEM_SHIPPing)                  .setRole(lineItem.Role.SHIPPing)                  .setTotalPrice(todollars(context, itemInfo.shipPingPriceMicros))                  .build())          .addlineItem(lineItem.newBuilder()                  .setCurrencyCode(Constants.CURRENCY_CODE_USD)                  .setDescription(Constants.DESCRIPTION_liNE_ITEM_TAX)                  .setRole(lineItem.Role.TAX)                  .setTotalPrice(todollars(context, itemInfo.taxMicros))                  .build())          .build())  .build();

通知Google电子钱包您的交易处理:

    Wallet.Payments.notifyTransactionStatus(mGoogleapiclient,  WalletUtil.createNotifyTransactionStatusRequest(fullWallet.getGoogleTransactionID(),                NotifyTransactionStatusRequest.Status.SUCCESS));

现在它显示交易成功.但是现在我有以下问题.

>如何将金额从Google钱包转账到商家帐户
>有什么方法可以在Google电子钱包之间转账到商家帐户?
> Google钱包商家帐户是否有可用的沙箱
>如何将商家帐户与应用程序集成?有没有代码?

提前致谢.

解决方法:

1.2.要将金额转入商家帐户,您需要任何付款处理器. Google钱包支持Stripe,Braintree,VANTIV,First Data,Cyber​​Source等付款处理器.

>您可以使用Stripe或Braintree等执行SEND Box测试…
>我们无法在应用程序中创建商户帐户.我们必须使用任何“付款处理方”网站创建商家帐户.

同样,使用Google钱包,您必须为您的项目生成客户端ID.

总结

以上是内存溢出为你收集整理的android-Google钱包,商家帐户和沙箱全部内容,希望文章能够帮你解决android-Google钱包,商家帐户和沙箱所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1079148.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存