前言:
项目目前给澳洲做一款点餐的app,之前集成的是braintree支付,由于需求方的原因(据说是支付牌照没申请下来,然后不得已,支付现在改成了stripe支付)。。。
虽然支付官网都有官方文档,但是对于国内的程序猿来说,看起来还是很痛苦的,毕竟都是英文文档,而且有时候只是去简单的去集成支付,没必要去仔细的研究他的文档,还耽误大把的时间。
其实支付的集成很简单的,下面直接贴代码,直接CV即可。
一、集成braintree
implementation 'com.braintreepayments.api:braintree:2.+'
implementation 'com.braintreepayments.api:drop-in:2.+'
/**
* 请求braintree_token
*/
HttpUtilsOnData.post(你需要请求的获取braintree_token接口,new SimpleArrayCallback(context) {
@Override
public void success(JSONArray json){
/**
* 省略解析数据的代码
* 解析你的数据,拿到mPayment_method_nonce
*/
//得到mPayment_method_nonce后调用下面代码即可,然后在onActivityResult回调
PaymentRequest paymentRequest = new PaymentRequest().clientToken(mPayment_method_nonce);
Log.d("nonce1===" , mPayment_method_nonce);
startActivityForResult(paymentRequest.getIntent(context), REQUEST_BRAINTREE);
}
@Override
public void fail() {
}
});
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == REQUEST_BRAINTREE) {
if (resultCode == Activity.RESULT_OK) {
/**
* 支付成功的回调
*/
PaymentMethodNonce paymentMethodNonce = data.getParcelableExtra(BraintreePaymentActivity.EXTRA_PAYMENT_METHOD_NONCE);
String nonce = paymentMethodNonce.getNonce();
map_order.put("balance_amount", "0");
map_order.put("nonce", mPayment_method_nonce);
/**
* 3.根据前面的参数去支付
*/
HttpUtilsOnData.post1(你的支付接口, new SimpleCallback(context) {
@Override
public void success(JSONObject json) {
//走到这里,说明支付成功了
}
@Override
public void fail() {
}
});
}
}
}
二、集成stripe
implementation 'com.stripe:stripe-android:9.0.0'
方式一:
//获取输入框银行卡信息
Card card = new Card("4242424242424242", 12, 2023, "123");
//验证是否错误
if (card.validateCard()) {
//创建stripe对象
Stripe stripe = new Stripe(context, "你的秘钥");
stripe.createToken(
card,
new TokenCallback() {
public void onSuccess(Token token) {
// Send token to your server
//成功创建令牌
//发起支付的请求接口
Log.d("6666666", "123456");
Log.d("6666666", token+"");
String bankAccount = token.getId();
Log.d("6666666", bankAccount);
}
public void onError(Exception error) {
// Show localized error message
Log.d("6666666", "12345678");
}
}
);
} else if (!card.validateNumber()) {
ToastUtil.show(context,"The card number that you entered is invalid");
} else if (!card.validateExpiryDate()) {
ToastUtil.show(context, "The expiration date that you entered is invalid");
} else if (!card.validateCVC()) {
ToastUtil.show(context, "The CVC code that you entered is invalid");
} else {
ToastUtil.show(context, "The card details that you entered are invalid");
}
方式二:
//stripe的控件提供了直接获取输入的信息
//获取输入框银行卡信息
CardInputWidget cardInputWidget = (CardInputWidget) findViewById(R.id.card_input_widget);
Card cardToSave = cardInputWidget.getCard();
if (cardToSave == null) {
//验证错误
} else {
//创建stripe对象
Stripe stripe = new Stripe(mContext, "pk_text_xxxxxxxxx");
stripe.createToken(
cardToSave,
new TokenCallback() {
public void onSuccess(Token token) {
//成功创建令牌
//发起支付的请求接口
}
public void onError(Exception error) {
}
}
);
}
<com.stripe.android.view.CardInputWidget
android:id="@+id/card_input_widget"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
网友评论