您好,对不起我的英语......
我已经为Android实现了Paypal sdk,它运行正常!但也许对于我的英语,我不明白我必须在这做什么:
@Override
protected void onActivityResult (int requestCode, int resultCode, Intent data) {
if (resultCode == Activity.RESULT_OK) {
PaymentConfirmation confirm = data.getParcelableExtra(PaymentActivity.EXTRA_RESULT_CONFIRMATION);
if (confirm != null) {
try {
Log.i("paymentExample", confirm.toJSONObject().toString(4));
// TODO: send 'confirm' to your server for verification.
// see https://developer.paypal.com/webapps/developer/docs/integration/mobile/verify-mobile-payment/
// for more details.
} catch (JSONException e) {
Toast.makeText(this, "Ha ocurrido un error, inténtelo de nuevo en unos instantes", Toast.LENGTH_LONG).show();
IrActivityAnterior();
}
}
}
我已经阅读过但我不知道是否需要向购买我的应用的人发送付款证明,或者我只需要获得此证明并保存。另一个问题是如何验证它?我需要遵循哪些步骤?
谢谢!