【发布时间】:2017-08-06 22:36:24
【问题描述】:
我们正在构建一个 Android 应用程序,希望在其中使用 Stripe 作为支付平台。
我们发现这个 github (https://github.com/thiagolocatelli/android-stripe-connect) 指定了如何集成独立的 Stripe 帐户。问题是在身份验证的最后一步我们应该调用
Stripe.apiKey = mSession.getAccessToken();
虽然网站上的文档说这是我们应该使用的命令,但 android studio 显示它:“无法解析符号 'apiKey'”。
我们遇到的另一个问题是
Account account = Account.retrieve();
Account 类已更改为 BankAccount,现在 BankAccount 类没有 retrieve 函数。
【问题讨论】:
标签: java android stripe-payments stripe-connect