google play store警告我将stripe sdk升级到16.9.0版本,现在我在createtoken()方法中的代码不起作用。
Stripe stripe = new Stripe(this, Const.STRIPE_PUB_KEY);
stripe.createToken(
card,
new TokenCallback() {
public void onSuccess(Token token) {
// Send token to your server
String stripeToken = token.getId();
Log.d("stripeToken", stripeToken);
}
public void onError(Exception error) {
}
}
);
现在我变了 createToken()
到 createCardToken()
```
Stripe stripe = new Stripe(this, Const.STRIPE_PUB_KEY);
stripe.createCardToken(
card,
new TokenCallback() {
public void onSuccess(Token token) {
// Send token to your server
String stripeToken = token.getId();
Log.d("stripeToken", stripeToken);
}
public void onError(Exception error) {
}
}
);
![](https://i.stack.imgur.com/nZHDa.png)
现在很好,但是 `createCardToken()` 将我显示为方法的方法将被拒绝。
有没有其他方法可以创建卡令牌?或升级卡令牌的其他策略?
暂无答案!
目前还没有任何答案,快来回答吧!