我在我的Android应用程序中使用Stripe作为支付处理器,并尝试按照文档所述向卡收费:https://stripe.com/docs/charges
我的问题是它不能解析Stripe.apiKey
或can not resolve symbol apiKey
我从文档中实现的代码:
// Set your secret key: remember to change this to your live secret key in production
// See your keys here: https://dashboard.stripe.com/account/apikeys
Stripe.apiKey = "sk_test_********************";//this is where i hit a wall
// Token is created using Stripe.js or Checkout!
// Get the payment token submitted by the form:
String token = request.getParameter("stripeToken");
// Charge the user's card:
Map<String, Object> params = new HashMap<String, Object>();
params.put("amount", 1000);
params.put("currency", "usd");
params.put("description", "Example charge");
params.put("source", token);
Charge charge = Charge.create(params);
我还在文件的顶部导入了import com.stripe.android.*;
。
在我的Gradle文件中,我导入了Stripe库:
compile 'com.stripe:stripe-android:2.0.2'
为什么Android无法解析Stripe.apiKey
?
4条答案
按热度按时间qq24tv8q1#
您提供的代码是用于使用令牌创建收费的 * 服务器端 * Java代码。它不适合在Android应用程序中使用。
Stripe的支付流程分为两个步骤:
第一步使用可发布的API密钥(
pk_...
)完成。第二步使用您的秘密API密钥(sk_...
)完成。您绝不能与前端代码共享秘密API密钥,否则攻击者可能会检索它并使用它来代表您发出API请求。
fzsnzjdm2#
要求解
Stripe.apikey cannot resolve
,请将Stripe.apiKey
更改为lrpiutwd3#
尝试:
Stripe stripe = new Stripe("pk_test_6pRNASCoBOKtIshFeQd4XMUh");
欲了解更多信息,请查看:https://stripe.com/docs/mobile/android#credit-card-form
pb3s4cty4#
在gradle文件中导入此依赖项。